pub struct ManagedSection {
pub start: usize,
pub size: usize,
pub free_pages: usize,
pub total_pages: usize,
}Expand description
Public read-only summary of a managed section.
Fields§
§start: usize§size: usize§free_pages: usize§total_pages: usizeTrait Implementations§
Source§impl Clone for ManagedSection
impl Clone for ManagedSection
Source§fn clone(&self) -> ManagedSection
fn clone(&self) -> ManagedSection
Returns a duplicate of the value. Read more
1.0.0 · 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 ManagedSection
impl Debug for ManagedSection
Source§impl PartialEq for ManagedSection
impl PartialEq for ManagedSection
impl Copy for ManagedSection
impl Eq for ManagedSection
impl StructuralPartialEq for ManagedSection
Auto Trait Implementations§
impl Freeze for ManagedSection
impl RefUnwindSafe for ManagedSection
impl Send for ManagedSection
impl Sync for ManagedSection
impl Unpin for ManagedSection
impl UnsafeUnpin for ManagedSection
impl UnwindSafe for ManagedSection
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