pub struct AllocationInfo {
pub page_base: u64,
pub page_offset: u64,
pub alloc_size: u64,
pub pages: usize,
}Fields§
§page_base: u64§page_offset: u64§alloc_size: u64§pages: usizeImplementations§
Trait Implementations§
Source§impl Clone for AllocationInfo
impl Clone for AllocationInfo
Source§fn clone(&self) -> AllocationInfo
fn clone(&self) -> AllocationInfo
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 AllocationInfo
impl Debug for AllocationInfo
Source§impl PartialEq for AllocationInfo
impl PartialEq for AllocationInfo
Source§fn eq(&self, other: &AllocationInfo) -> bool
fn eq(&self, other: &AllocationInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AllocationInfo
impl Eq for AllocationInfo
impl StructuralPartialEq for AllocationInfo
Auto Trait Implementations§
impl Freeze for AllocationInfo
impl RefUnwindSafe for AllocationInfo
impl Send for AllocationInfo
impl Sync for AllocationInfo
impl Unpin for AllocationInfo
impl UnsafeUnpin for AllocationInfo
impl UnwindSafe for AllocationInfo
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