pub struct SsmSnapshot {
pub schema_version: u32,
pub accounts: Option<MultiAccountState<SsmState>>,
pub state: Option<SsmState>,
}Expand description
On-disk snapshot envelope for SSM state. Versioned so format changes fail loudly on upgrade.
Fields§
§schema_version: u32§accounts: Option<MultiAccountState<SsmState>>§state: Option<SsmState>Trait Implementations§
Source§impl Clone for SsmSnapshot
impl Clone for SsmSnapshot
Source§fn clone(&self) -> SsmSnapshot
fn clone(&self) -> SsmSnapshot
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 SsmSnapshot
impl Debug for SsmSnapshot
Source§impl<'de> Deserialize<'de> for SsmSnapshot
impl<'de> Deserialize<'de> for SsmSnapshot
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
Auto Trait Implementations§
impl Freeze for SsmSnapshot
impl RefUnwindSafe for SsmSnapshot
impl Send for SsmSnapshot
impl Sync for SsmSnapshot
impl Unpin for SsmSnapshot
impl UnsafeUnpin for SsmSnapshot
impl UnwindSafe for SsmSnapshot
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