pub enum BreakSize {
Bytes1 = 0,
Bytes2 = 1,
Bytes8 = 2,
Bytes4 = 3,
}
Expand description
Specify the size of the memory location at the address specified in the corresponding breakpoint address register (DR0 through DR3).
Variants§
Bytes1 = 0
00 — 1-byte length.
Bytes2 = 1
01 — 2-byte length.
Bytes8 = 2
10 — 8 byte length (or undefined, on older processors).
Bytes4 = 3
11 — 4-byte length.
Trait Implementations§
impl Copy for BreakSize
impl Eq for BreakSize
impl StructuralPartialEq for BreakSize
Auto Trait Implementations§
impl Freeze for BreakSize
impl RefUnwindSafe for BreakSize
impl Send for BreakSize
impl Sync for BreakSize
impl Unpin for BreakSize
impl UnwindSafe for BreakSize
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