#[repr(u32)]pub enum ExpressionResults {
Completed = 0,
SetupError = 1,
ParseError = 2,
Discarded = 3,
Interrupted = 4,
HitBreakpoint = 5,
TimedOut = 6,
ResultUnavailable = 7,
StoppedForDebug = 8,
ThreadVanished = 9,
}Variants§
Completed = 0
SetupError = 1
ParseError = 2
Discarded = 3
Interrupted = 4
HitBreakpoint = 5
TimedOut = 6
StoppedForDebug = 8
ThreadVanished = 9
Trait Implementations§
Source§impl Clone for ExpressionResults
impl Clone for ExpressionResults
Source§fn clone(&self) -> ExpressionResults
fn clone(&self) -> ExpressionResults
Returns a duplicate 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 ExpressionResults
impl Debug for ExpressionResults
Source§impl PartialEq for ExpressionResults
impl PartialEq for ExpressionResults
Source§impl PartialOrd for ExpressionResults
impl PartialOrd for ExpressionResults
impl Copy for ExpressionResults
impl Eq for ExpressionResults
impl StructuralPartialEq for ExpressionResults
Auto Trait Implementations§
impl Freeze for ExpressionResults
impl RefUnwindSafe for ExpressionResults
impl Send for ExpressionResults
impl Sync for ExpressionResults
impl Unpin for ExpressionResults
impl UnwindSafe for ExpressionResults
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