#[repr(u8)]pub enum Pagebreak {
NONE = 0,
_256 = 1,
_1024 = 2,
_4096 = 3,
}
Variants§
NONE = 0
No page boundary is enforced
_256 = 1
Break bursts crossing a 256-byte page boundary
_1024 = 2
Break bursts crossing a 1024-byte quad-page boundary
_4096 = 3
Break bursts crossing a 4096-byte sector boundary
Implementations§
Trait Implementations§
Source§impl Ord for Pagebreak
impl Ord for Pagebreak
Source§impl PartialOrd for Pagebreak
impl PartialOrd for Pagebreak
impl Copy for Pagebreak
impl Eq for Pagebreak
impl StructuralPartialEq for Pagebreak
Auto Trait Implementations§
impl Freeze for Pagebreak
impl RefUnwindSafe for Pagebreak
impl Send for Pagebreak
impl Sync for Pagebreak
impl Unpin for Pagebreak
impl UnwindSafe for Pagebreak
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