Enum mcfunction_debugger::config::adapter::BreakpointKind
source · pub enum BreakpointKind {
Normal,
Invalid,
Continue,
Step {
condition: String,
},
}
Variants§
Implementations§
source§impl BreakpointKind
impl BreakpointKind
pub fn can_resume(&self) -> bool
Trait Implementations§
source§impl Clone for BreakpointKind
impl Clone for BreakpointKind
source§fn clone(&self) -> BreakpointKind
fn clone(&self) -> BreakpointKind
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 BreakpointKind
impl Debug for BreakpointKind
source§impl PartialEq<BreakpointKind> for BreakpointKind
impl PartialEq<BreakpointKind> for BreakpointKind
source§fn eq(&self, other: &BreakpointKind) -> bool
fn eq(&self, other: &BreakpointKind) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BreakpointKind
impl StructuralEq for BreakpointKind
impl StructuralPartialEq for BreakpointKind
Auto Trait Implementations§
impl RefUnwindSafe for BreakpointKind
impl Send for BreakpointKind
impl Sync for BreakpointKind
impl Unpin for BreakpointKind
impl UnwindSafe for BreakpointKind
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.