pub struct SnapshotProvenanceConformance {
pub design_v1_ready: bool,
pub member_count: usize,
pub members_with_snapshot_id: usize,
pub members_with_checksum: usize,
pub members_with_module_hash: usize,
pub members_with_wasm_hash: usize,
pub members_with_code_version: usize,
pub all_members_have_snapshot_id: bool,
pub all_members_have_checksum: bool,
}Expand description
SnapshotProvenanceConformance
Fields§
§design_v1_ready: bool§member_count: usize§members_with_snapshot_id: usize§members_with_checksum: usize§members_with_module_hash: usize§members_with_wasm_hash: usize§members_with_code_version: usize§all_members_have_snapshot_id: bool§all_members_have_checksum: boolTrait Implementations§
Source§impl Clone for SnapshotProvenanceConformance
impl Clone for SnapshotProvenanceConformance
Source§fn clone(&self) -> SnapshotProvenanceConformance
fn clone(&self) -> SnapshotProvenanceConformance
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<'de> Deserialize<'de> for SnapshotProvenanceConformance
impl<'de> Deserialize<'de> for SnapshotProvenanceConformance
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 SnapshotProvenanceConformance
impl PartialEq for SnapshotProvenanceConformance
Source§fn eq(&self, other: &SnapshotProvenanceConformance) -> bool
fn eq(&self, other: &SnapshotProvenanceConformance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SnapshotProvenanceConformance
impl StructuralPartialEq for SnapshotProvenanceConformance
Auto Trait Implementations§
impl Freeze for SnapshotProvenanceConformance
impl RefUnwindSafe for SnapshotProvenanceConformance
impl Send for SnapshotProvenanceConformance
impl Sync for SnapshotProvenanceConformance
impl Unpin for SnapshotProvenanceConformance
impl UnsafeUnpin for SnapshotProvenanceConformance
impl UnwindSafe for SnapshotProvenanceConformance
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