pub struct StepHistoryEntry {
pub step_id: String,
pub description: String,
pub success: bool,
pub output: Option<String>,
}Fields§
§step_id: String§description: String§success: bool§output: Option<String>Trait Implementations§
Source§impl Clone for StepHistoryEntry
impl Clone for StepHistoryEntry
Source§fn clone(&self) -> StepHistoryEntry
fn clone(&self) -> StepHistoryEntry
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 StepHistoryEntry
impl Debug for StepHistoryEntry
Source§impl<'de> Deserialize<'de> for StepHistoryEntry
impl<'de> Deserialize<'de> for StepHistoryEntry
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<StepHistoryEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<StepHistoryEntry, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for StepHistoryEntry
impl Serialize for StepHistoryEntry
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for StepHistoryEntry
impl RefUnwindSafe for StepHistoryEntry
impl Send for StepHistoryEntry
impl Sync for StepHistoryEntry
impl Unpin for StepHistoryEntry
impl UnsafeUnpin for StepHistoryEntry
impl UnwindSafe for StepHistoryEntry
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