@@ -102,6 +102,52 @@ impl<T> Box<T> {
102
102
}
103
103
}
104
104
105
+ impl < T : ?Sized > Box < T > {
106
+ /// Constructs a box from the raw pointer.
107
+ ///
108
+ /// After this function call, pointer is owned by resulting box.
109
+ /// In particular, it means that `Box` destructor calls destructor
110
+ /// of `T` and releases memory. Since the way `Box` allocates and
111
+ /// releases memory is unspecified, so the only valid pointer to
112
+ /// pass to this function is the one taken from another `Box` with
113
+ /// `box::into_raw` function.
114
+ ///
115
+ /// Function is unsafe, because improper use of this function may
116
+ /// lead to memory problems like double-free, for example if the
117
+ /// function is called twice on the same raw pointer.
118
+ #[ unstable( feature = "alloc" ,
119
+ reason = "may be renamed or moved out of Box scope" ) ]
120
+ pub unsafe fn from_raw ( raw : * mut T ) -> Self {
121
+ mem:: transmute ( raw)
122
+ }
123
+ }
124
+
125
+ /// Consumes the `Box`, returning the wrapped raw pointer.
126
+ ///
127
+ /// After call to this function, caller is responsible for the memory
128
+ /// previously managed by `Box`, in particular caller should properly
129
+ /// destroy `T` and release memory. The proper way to do it is to
130
+ /// convert pointer back to `Box` with `Box::from_raw` function, because
131
+ /// `Box` does not specify, how memory is allocated.
132
+ ///
133
+ /// Function is unsafe, because result of this function is no longer
134
+ /// automatically managed that may lead to memory or other resource
135
+ /// leak.
136
+ ///
137
+ /// # Example
138
+ /// ```
139
+ /// use std::boxed;
140
+ ///
141
+ /// let seventeen = Box::new(17u32);
142
+ /// let raw = unsafe { boxed::into_raw(seventeen) };
143
+ /// let boxed_again = unsafe { Box::from_raw(raw) };
144
+ /// ```
145
+ #[ unstable( feature = "alloc" ,
146
+ reason = "may be renamed" ) ]
147
+ pub unsafe fn into_raw < T : ?Sized > ( b : Box < T > ) -> * mut T {
148
+ mem:: transmute ( b)
149
+ }
150
+
105
151
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
106
152
impl < T : Default > Default for Box < T > {
107
153
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
0 commit comments