pub struct FreeListPage {
pub next: u64,
}Expand description
In-memory view of a freelist page.
Fields§
§next: u64Next page on the freelist, or 0 if this is the last entry.
Implementations§
Trait Implementations§
Source§impl Clone for FreeListPage
impl Clone for FreeListPage
Source§fn clone(&self) -> FreeListPage
fn clone(&self) -> FreeListPage
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 FreeListPage
impl Debug for FreeListPage
Source§impl PartialEq for FreeListPage
impl PartialEq for FreeListPage
Source§fn eq(&self, other: &FreeListPage) -> bool
fn eq(&self, other: &FreeListPage) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FreeListPage
impl Eq for FreeListPage
impl StructuralPartialEq for FreeListPage
Auto Trait Implementations§
impl Freeze for FreeListPage
impl RefUnwindSafe for FreeListPage
impl Send for FreeListPage
impl Sync for FreeListPage
impl Unpin for FreeListPage
impl UnsafeUnpin for FreeListPage
impl UnwindSafe for FreeListPage
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