pub enum StoppedReason {
Breakpoint,
Step,
}
Variants§
Trait Implementations§
source§impl Clone for StoppedReason
impl Clone for StoppedReason
source§fn clone(&self) -> StoppedReason
fn clone(&self) -> StoppedReason
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 StoppedReason
impl Debug for StoppedReason
source§impl Display for StoppedReason
impl Display for StoppedReason
source§impl FromStr for StoppedReason
impl FromStr for StoppedReason
source§impl PartialEq<StoppedReason> for StoppedReason
impl PartialEq<StoppedReason> for StoppedReason
source§fn eq(&self, other: &StoppedReason) -> bool
fn eq(&self, other: &StoppedReason) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for StoppedReason
impl Eq for StoppedReason
impl StructuralEq for StoppedReason
impl StructuralPartialEq for StoppedReason
Auto Trait Implementations§
impl RefUnwindSafe for StoppedReason
impl Send for StoppedReason
impl Sync for StoppedReason
impl Unpin for StoppedReason
impl UnwindSafe for StoppedReason
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.