pub struct PhaseReceiptV1 {
pub phase: String,
pub started_at: String,
pub finished_at: Option<String>,
pub attempted_action: String,
pub verified_postcondition: VerifiedPostconditionV1,
}Expand description
PhaseReceiptV1
Fields§
§phase: String§started_at: String§finished_at: Option<String>§attempted_action: String§verified_postcondition: VerifiedPostconditionV1Trait Implementations§
Source§impl Clone for PhaseReceiptV1
impl Clone for PhaseReceiptV1
Source§fn clone(&self) -> PhaseReceiptV1
fn clone(&self) -> PhaseReceiptV1
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 PhaseReceiptV1
impl Debug for PhaseReceiptV1
Source§impl<'de> Deserialize<'de> for PhaseReceiptV1
impl<'de> Deserialize<'de> for PhaseReceiptV1
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
Source§impl PartialEq for PhaseReceiptV1
impl PartialEq for PhaseReceiptV1
Source§fn eq(&self, other: &PhaseReceiptV1) -> bool
fn eq(&self, other: &PhaseReceiptV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PhaseReceiptV1
impl Serialize for PhaseReceiptV1
impl Eq for PhaseReceiptV1
impl StructuralPartialEq for PhaseReceiptV1
Auto Trait Implementations§
impl Freeze for PhaseReceiptV1
impl RefUnwindSafe for PhaseReceiptV1
impl Send for PhaseReceiptV1
impl Sync for PhaseReceiptV1
impl Unpin for PhaseReceiptV1
impl UnsafeUnpin for PhaseReceiptV1
impl UnwindSafe for PhaseReceiptV1
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