pub struct StoredSnapshot {
pub snapshot: Snapshot,
pub legacy_blob: Option<Vec<u8>>,
}Fields§
§snapshot: Snapshot§legacy_blob: Option<Vec<u8>>Read-only compatibility payload for rows created before object storage was introduced. New writes must always leave this empty.
Trait Implementations§
Source§impl Clone for StoredSnapshot
impl Clone for StoredSnapshot
Source§fn clone(&self) -> StoredSnapshot
fn clone(&self) -> StoredSnapshot
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 moreAuto Trait Implementations§
impl Freeze for StoredSnapshot
impl RefUnwindSafe for StoredSnapshot
impl Send for StoredSnapshot
impl Sync for StoredSnapshot
impl Unpin for StoredSnapshot
impl UnsafeUnpin for StoredSnapshot
impl UnwindSafe for StoredSnapshot
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