pub enum SnapshotSourceRecord {
Computer {
computer_id: String,
},
Sandbox {
sandbox_id: String,
},
Space {
space_id: String,
revision: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for SnapshotSourceRecord
impl Clone for SnapshotSourceRecord
Source§fn clone(&self) -> SnapshotSourceRecord
fn clone(&self) -> SnapshotSourceRecord
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 SnapshotSourceRecord
impl Debug for SnapshotSourceRecord
Source§impl<'de> Deserialize<'de> for SnapshotSourceRecord
impl<'de> Deserialize<'de> for SnapshotSourceRecord
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
impl Eq for SnapshotSourceRecord
Source§impl PartialEq for SnapshotSourceRecord
impl PartialEq for SnapshotSourceRecord
Source§impl Serialize for SnapshotSourceRecord
impl Serialize for SnapshotSourceRecord
impl StructuralPartialEq for SnapshotSourceRecord
Auto Trait Implementations§
impl Freeze for SnapshotSourceRecord
impl RefUnwindSafe for SnapshotSourceRecord
impl Send for SnapshotSourceRecord
impl Sync for SnapshotSourceRecord
impl Unpin for SnapshotSourceRecord
impl UnsafeUnpin for SnapshotSourceRecord
impl UnwindSafe for SnapshotSourceRecord
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