#[repr(u8)]pub enum BreakLength {
Byte = 0,
Word = 1,
Qword = 2,
Dword = 3,
}Expand description
breakpoint length
Variants§
Trait Implementations§
Source§impl Clone for BreakLength
impl Clone for BreakLength
Source§fn clone(&self) -> BreakLength
fn clone(&self) -> BreakLength
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 moreimpl Copy for BreakLength
Source§impl Debug for BreakLength
impl Debug for BreakLength
impl Eq for BreakLength
Source§impl PartialEq for BreakLength
impl PartialEq for BreakLength
Source§fn eq(&self, other: &BreakLength) -> bool
fn eq(&self, other: &BreakLength) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BreakLength
Auto Trait Implementations§
impl Freeze for BreakLength
impl RefUnwindSafe for BreakLength
impl Send for BreakLength
impl Sync for BreakLength
impl Unpin for BreakLength
impl UnsafeUnpin for BreakLength
impl UnwindSafe for BreakLength
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