pub enum SingleStepEvent {
Admit,
Start {
at: String,
},
Succeed {
at: String,
admission_witness: Box<StepAdmissionWitness>,
},
Fail {
at: String,
error: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for SingleStepEvent
impl Clone for SingleStepEvent
Source§fn clone(&self) -> SingleStepEvent
fn clone(&self) -> SingleStepEvent
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 moreSource§impl Debug for SingleStepEvent
impl Debug for SingleStepEvent
Source§impl<'de> Deserialize<'de> for SingleStepEvent
impl<'de> Deserialize<'de> for SingleStepEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SingleStepEvent
Source§impl PartialEq for SingleStepEvent
impl PartialEq for SingleStepEvent
Source§fn eq(&self, other: &SingleStepEvent) -> bool
fn eq(&self, other: &SingleStepEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SingleStepEvent
impl Serialize for SingleStepEvent
impl StructuralPartialEq for SingleStepEvent
Auto Trait Implementations§
impl Freeze for SingleStepEvent
impl RefUnwindSafe for SingleStepEvent
impl Send for SingleStepEvent
impl Sync for SingleStepEvent
impl Unpin for SingleStepEvent
impl UnsafeUnpin for SingleStepEvent
impl UnwindSafe for SingleStepEvent
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