pub struct SnapshotVersioning {
pub snapshot: Option<Snapshot>,
pub snapshot_versions: Option<SnapshotVersions>,
pub last_updated: Option<NaiveDateTime>,
}
Fields§
§snapshot: Option<Snapshot>
§snapshot_versions: Option<SnapshotVersions>
§last_updated: Option<NaiveDateTime>
Trait Implementations§
Source§impl Clone for SnapshotVersioning
impl Clone for SnapshotVersioning
Source§fn clone(&self) -> SnapshotVersioning
fn clone(&self) -> SnapshotVersioning
Returns a copy 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 moreSource§impl Debug for SnapshotVersioning
impl Debug for SnapshotVersioning
Source§impl Default for SnapshotVersioning
impl Default for SnapshotVersioning
Source§fn default() -> SnapshotVersioning
fn default() -> SnapshotVersioning
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SnapshotVersioning
impl<'de> Deserialize<'de> for SnapshotVersioning
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 SnapshotVersioning
impl RefUnwindSafe for SnapshotVersioning
impl Send for SnapshotVersioning
impl Sync for SnapshotVersioning
impl Unpin for SnapshotVersioning
impl UnwindSafe for SnapshotVersioning
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