Struct lc3_ensemble::sim::debug::BreakpointKey
source · pub struct BreakpointKey(/* private fields */);Expand description
Key to index into a breakpoint list.
Implementations§
Trait Implementations§
source§impl Clone for BreakpointKey
impl Clone for BreakpointKey
source§fn clone(&self) -> BreakpointKey
fn clone(&self) -> BreakpointKey
Returns a copy of the value. Read more
1.0.0 · 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 BreakpointKey
impl Debug for BreakpointKey
source§impl Default for BreakpointKey
impl Default for BreakpointKey
source§fn default() -> BreakpointKey
fn default() -> BreakpointKey
Returns the “default value” for a type. Read more
source§impl From<KeyData> for BreakpointKey
impl From<KeyData> for BreakpointKey
source§impl Hash for BreakpointKey
impl Hash for BreakpointKey
source§impl Index<BreakpointKey> for BreakpointList
impl Index<BreakpointKey> for BreakpointList
§type Output = Breakpoint
type Output = Breakpoint
The returned type after indexing.
source§impl IndexMut<BreakpointKey> for BreakpointList
impl IndexMut<BreakpointKey> for BreakpointList
source§impl Key for BreakpointKey
impl Key for BreakpointKey
source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!, which calls this
method). Read moresource§impl Ord for BreakpointKey
impl Ord for BreakpointKey
source§fn cmp(&self, other: &BreakpointKey) -> Ordering
fn cmp(&self, other: &BreakpointKey) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for BreakpointKey
impl PartialEq for BreakpointKey
source§fn eq(&self, other: &BreakpointKey) -> bool
fn eq(&self, other: &BreakpointKey) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for BreakpointKey
impl PartialOrd for BreakpointKey
source§fn partial_cmp(&self, other: &BreakpointKey) -> Option<Ordering>
fn partial_cmp(&self, other: &BreakpointKey) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for BreakpointKey
impl Eq for BreakpointKey
impl StructuralPartialEq for BreakpointKey
Auto Trait Implementations§
impl Freeze for BreakpointKey
impl RefUnwindSafe for BreakpointKey
impl Send for BreakpointKey
impl Sync for BreakpointKey
impl Unpin for BreakpointKey
impl UnwindSafe for BreakpointKey
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