pub struct SingleStepState {
pub step_id: String,
pub status: StepStatus,
pub started_at: Option<String>,
pub completed_at: Option<String>,
pub error: Option<String>,
}Fields§
§step_id: String§status: StepStatus§started_at: Option<String>§completed_at: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for SingleStepState
impl Clone for SingleStepState
Source§fn clone(&self) -> SingleStepState
fn clone(&self) -> SingleStepState
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 SingleStepState
impl Debug for SingleStepState
Source§impl<'de> Deserialize<'de> for SingleStepState
impl<'de> Deserialize<'de> for SingleStepState
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 SingleStepState
Source§impl PartialEq for SingleStepState
impl PartialEq for SingleStepState
Source§fn eq(&self, other: &SingleStepState) -> bool
fn eq(&self, other: &SingleStepState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SingleStepState
impl Serialize for SingleStepState
impl StructuralPartialEq for SingleStepState
Auto Trait Implementations§
impl Freeze for SingleStepState
impl RefUnwindSafe for SingleStepState
impl Send for SingleStepState
impl Sync for SingleStepState
impl Unpin for SingleStepState
impl UnsafeUnpin for SingleStepState
impl UnwindSafe for SingleStepState
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