pub struct SnapshotUpdatedEvent {
pub event_type: String,
pub surface_id: String,
pub thread_id: String,
pub request_id: String,
pub snapshot_version: u64,
pub occurred_at: String,
pub data: SnapshotUpdatedData,
}Fields§
§event_type: String§surface_id: String§thread_id: String§request_id: String§snapshot_version: u64§occurred_at: String§data: SnapshotUpdatedDataTrait Implementations§
Source§impl Clone for SnapshotUpdatedEvent
impl Clone for SnapshotUpdatedEvent
Source§fn clone(&self) -> SnapshotUpdatedEvent
fn clone(&self) -> SnapshotUpdatedEvent
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 SnapshotUpdatedEvent
impl Debug for SnapshotUpdatedEvent
Source§impl<'de> Deserialize<'de> for SnapshotUpdatedEvent
impl<'de> Deserialize<'de> for SnapshotUpdatedEvent
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
Source§impl PartialEq for SnapshotUpdatedEvent
impl PartialEq for SnapshotUpdatedEvent
Source§impl Serialize for SnapshotUpdatedEvent
impl Serialize for SnapshotUpdatedEvent
impl StructuralPartialEq for SnapshotUpdatedEvent
Auto Trait Implementations§
impl Freeze for SnapshotUpdatedEvent
impl RefUnwindSafe for SnapshotUpdatedEvent
impl Send for SnapshotUpdatedEvent
impl Sync for SnapshotUpdatedEvent
impl Unpin for SnapshotUpdatedEvent
impl UnsafeUnpin for SnapshotUpdatedEvent
impl UnwindSafe for SnapshotUpdatedEvent
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