pub struct RolePhaseReceiptV1 {
pub role: String,
pub phase: String,
pub result: RolePhaseResultV1,
pub previous_module_hash: Option<String>,
pub target_module_hash: Option<String>,
pub observed_module_hash_after: Option<String>,
pub artifact_digest: Option<String>,
pub canonical_embedded_config_sha256: Option<String>,
pub error: Option<String>,
}Expand description
RolePhaseReceiptV1
Fields§
§role: String§phase: String§result: RolePhaseResultV1§previous_module_hash: Option<String>§target_module_hash: Option<String>§observed_module_hash_after: Option<String>§artifact_digest: Option<String>§canonical_embedded_config_sha256: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for RolePhaseReceiptV1
impl Clone for RolePhaseReceiptV1
Source§fn clone(&self) -> RolePhaseReceiptV1
fn clone(&self) -> RolePhaseReceiptV1
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 RolePhaseReceiptV1
impl Debug for RolePhaseReceiptV1
Source§impl<'de> Deserialize<'de> for RolePhaseReceiptV1
impl<'de> Deserialize<'de> for RolePhaseReceiptV1
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 RolePhaseReceiptV1
impl PartialEq for RolePhaseReceiptV1
Source§fn eq(&self, other: &RolePhaseReceiptV1) -> bool
fn eq(&self, other: &RolePhaseReceiptV1) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RolePhaseReceiptV1
impl Serialize for RolePhaseReceiptV1
impl Eq for RolePhaseReceiptV1
impl StructuralPartialEq for RolePhaseReceiptV1
Auto Trait Implementations§
impl Freeze for RolePhaseReceiptV1
impl RefUnwindSafe for RolePhaseReceiptV1
impl Send for RolePhaseReceiptV1
impl Sync for RolePhaseReceiptV1
impl Unpin for RolePhaseReceiptV1
impl UnsafeUnpin for RolePhaseReceiptV1
impl UnwindSafe for RolePhaseReceiptV1
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