pub struct RawPtr<'a, T> {
pub ptr: *mut T,
/* private fields */
}
Expand description
Memory mapped raw pointer
Fields§
§ptr: *mut T
Pointer
Auto Trait Implementations§
impl<'a, T> Freeze for RawPtr<'a, T>
impl<'a, T> RefUnwindSafe for RawPtr<'a, T>where
T: RefUnwindSafe,
impl<'a, T> !Send for RawPtr<'a, T>
impl<'a, T> !Sync for RawPtr<'a, T>
impl<'a, T> Unpin for RawPtr<'a, T>
impl<'a, T> !UnwindSafe for RawPtr<'a, T>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more