pub struct AllocationCommitRange {
pub ptr: NonNull<u8>,
pub allocation_bytes: usize,
pub align: usize,
pub offset: usize,
pub bytes: usize,
}Fields§
§ptr: NonNull<u8>§allocation_bytes: usize§align: usize§offset: usize§bytes: usizeTrait Implementations§
Source§impl Clone for AllocationCommitRange
impl Clone for AllocationCommitRange
Source§fn clone(&self) -> AllocationCommitRange
fn clone(&self) -> AllocationCommitRange
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 moreimpl Copy for AllocationCommitRange
Auto Trait Implementations§
impl !Send for AllocationCommitRange
impl !Sync for AllocationCommitRange
impl Freeze for AllocationCommitRange
impl RefUnwindSafe for AllocationCommitRange
impl Unpin for AllocationCommitRange
impl UnsafeUnpin for AllocationCommitRange
impl UnwindSafe for AllocationCommitRange
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