pub enum CheckStepStatus {
Passed,
Failed,
Skipped,
Unknown {
tag: String,
payload: OpaquePayload,
},
}Variants§
Trait Implementations§
Source§impl Clone for CheckStepStatus
impl Clone for CheckStepStatus
Source§fn clone(&self) -> CheckStepStatus
fn clone(&self) -> CheckStepStatus
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 ContractType for CheckStepStatus
impl ContractType for CheckStepStatus
fn encode_value(&self) -> Result<ContractValue, EncodeError>
fn decode_value(value: &ContractValue) -> Result<Self, DecodeError>
fn encode(&self) -> Result<SlotValue, EncodeError>
fn decode(slot: &SlotValue) -> Result<Self, DecodeError>
fn encode_field(&self) -> Result<Option<ContractValue>, EncodeError>
fn decode_field(field: Option<&ContractValue>) -> Result<Self, DecodeError>
Source§impl Debug for CheckStepStatus
impl Debug for CheckStepStatus
Source§impl Default for CheckStepStatus
impl Default for CheckStepStatus
Source§fn default() -> CheckStepStatus
fn default() -> CheckStepStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for CheckStepStatus
impl PartialEq for CheckStepStatus
impl StructuralPartialEq for CheckStepStatus
Auto Trait Implementations§
impl Freeze for CheckStepStatus
impl RefUnwindSafe for CheckStepStatus
impl Send for CheckStepStatus
impl Sync for CheckStepStatus
impl Unpin for CheckStepStatus
impl UnsafeUnpin for CheckStepStatus
impl UnwindSafe for CheckStepStatus
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