Struct vstd::ptr::DeallocRawData  
source · pub struct DeallocRawData {
    pub pptr: int,
    pub size: nat,
    pub align: nat,
}👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
– 
PPtr<T> in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T with vstd::raw_ptr (for more advanced use-cases)Fields§
§pptr: int👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
– 
§PPtr<T> in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T with vstd::raw_ptr (for more advanced use-cases)size: nat👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
– 
§PPtr<T> in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T with vstd::raw_ptr (for more advanced use-cases)align: nat👎Deprecated: The vstd::ptr version of PPtr is deprecated. Use either:
– 
PPtr<T> in vstd::simple_pptr (for simple use-cases, with fixed-size typed heap allocations)
– *mut T with vstd::raw_ptr (for more advanced use-cases)Auto Trait Implementations§
impl Freeze for DeallocRawData
impl RefUnwindSafe for DeallocRawData
impl Send for DeallocRawData
impl Sync for DeallocRawData
impl Unpin for DeallocRawData
impl UnwindSafe for DeallocRawData
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