pub struct AllocateHeap {
pub stack_need: Allocation,
pub heap_need: Allocation,
pub live: usize,
}Fields§
§stack_need: Allocation§heap_need: Allocation§live: usizeTrait Implementations§
Source§impl Clone for AllocateHeap
impl Clone for AllocateHeap
Source§fn clone(&self) -> AllocateHeap
fn clone(&self) -> AllocateHeap
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AllocateHeap
impl Debug for AllocateHeap
Source§impl Decode for AllocateHeap
impl Decode for AllocateHeap
fn decode_with_tag<R: Read>( reader: &mut R, tag: u8, ) -> Result<Self, DecodeError>
fn decode<R: Read>(reader: &mut R) -> Result<Self, DecodeError>
Source§impl Encode for AllocateHeap
impl Encode for AllocateHeap
Auto Trait Implementations§
impl Freeze for AllocateHeap
impl RefUnwindSafe for AllocateHeap
impl Send for AllocateHeap
impl Sync for AllocateHeap
impl Unpin for AllocateHeap
impl UnsafeUnpin for AllocateHeap
impl UnwindSafe for AllocateHeap
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