pub(crate) struct MutPointer<T> {
ptr: *mut T,
}
Fields§
§ptr: *mut T
Trait Implementations§
Source§impl<T: Debug> Debug for MutPointer<T>
impl<T: Debug> Debug for MutPointer<T>
Auto Trait Implementations§
impl<T> Freeze for MutPointer<T>
impl<T> RefUnwindSafe for MutPointer<T>where
T: RefUnwindSafe,
impl<T> !Send for MutPointer<T>
impl<T> !Sync for MutPointer<T>
impl<T> Unpin for MutPointer<T>
impl<T> UnwindSafe for MutPointer<T>where
T: RefUnwindSafe,
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