pub struct SnapshotPlan {
pub snapshot_id: String,
pub module_hash: Option<String>,
pub wasm_hash: Option<String>,
pub code_version: Option<String>,
pub artifact_path: String,
pub checksum_algorithm: String,
}Expand description
SnapshotPlan
Fields§
§snapshot_id: String§module_hash: Option<String>§wasm_hash: Option<String>§code_version: Option<String>§artifact_path: String§checksum_algorithm: StringTrait Implementations§
Source§impl Clone for SnapshotPlan
impl Clone for SnapshotPlan
Source§fn clone(&self) -> SnapshotPlan
fn clone(&self) -> SnapshotPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SnapshotPlan
impl RefUnwindSafe for SnapshotPlan
impl Send for SnapshotPlan
impl Sync for SnapshotPlan
impl Unpin for SnapshotPlan
impl UnsafeUnpin for SnapshotPlan
impl UnwindSafe for SnapshotPlan
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