#[repr(C)]pub struct NSTDHeapPtr<'a> { /* private fields */ }
Available on crate feature
heap_ptr
only.Expand description
A pointer type for single value heap allocation.
Trait Implementations§
Source§impl Drop for NSTDHeapPtr<'_>
impl Drop for NSTDHeapPtr<'_>
Source§fn drop(&mut self)
fn drop(&mut self)
NSTDHeapPtr
’s destructor.
impl Send for NSTDHeapPtr<'_>
§Safety
The data that the heap pointer holds must be able to be safely sent between threads.
impl Sync for NSTDHeapPtr<'_>
§Safety
The data that the heap pointer holds must be able to be safely shared between threads.
Auto Trait Implementations§
impl<'a> Freeze for NSTDHeapPtr<'a>
impl<'a> RefUnwindSafe for NSTDHeapPtr<'a>
impl<'a> Unpin for NSTDHeapPtr<'a>
impl<'a> UnwindSafe for NSTDHeapPtr<'a>
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