pub struct FileHistorySnapshotMessage {
pub message_type: String,
pub message_id: Uuid,
pub snapshot: FileHistorySnapshot,
pub is_snapshot_update: bool,
}Expand description
File history snapshot message.
Fields§
§message_type: String§message_id: Uuid§snapshot: FileHistorySnapshot§is_snapshot_update: boolTrait Implementations§
Source§impl Clone for FileHistorySnapshotMessage
impl Clone for FileHistorySnapshotMessage
Source§fn clone(&self) -> FileHistorySnapshotMessage
fn clone(&self) -> FileHistorySnapshotMessage
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 moreSource§impl Debug for FileHistorySnapshotMessage
impl Debug for FileHistorySnapshotMessage
Source§impl<'de> Deserialize<'de> for FileHistorySnapshotMessage
impl<'de> Deserialize<'de> for FileHistorySnapshotMessage
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 FileHistorySnapshotMessage
impl RefUnwindSafe for FileHistorySnapshotMessage
impl Send for FileHistorySnapshotMessage
impl Sync for FileHistorySnapshotMessage
impl Unpin for FileHistorySnapshotMessage
impl UnsafeUnpin for FileHistorySnapshotMessage
impl UnwindSafe for FileHistorySnapshotMessage
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