#[repr(u32)]pub enum PageState {
Uninitialized = 4_294_967_295,
Active = 4_294_967_294,
Full = 4_294_967_292,
Freeing = 4_294_967_288,
Corrupt = 4_294_967_280,
Invalid = 0,
}Variants§
Uninitialized = 4_294_967_295
Active = 4_294_967_294
Full = 4_294_967_292
Freeing = 4_294_967_288
Corrupt = 4_294_967_280
Invalid = 0
Implementations§
Trait Implementations§
impl Copy for PageState
impl StructuralPartialEq for PageState
Auto Trait Implementations§
impl Freeze for PageState
impl RefUnwindSafe for PageState
impl Send for PageState
impl Sync for PageState
impl Unpin for PageState
impl UnsafeUnpin for PageState
impl UnwindSafe for PageState
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