pub struct ThreadAttachmentUpdatedNotification {
pub attachment_id: String,
pub attachment_type: String,
pub identity_key: String,
pub operation: ThreadAttachmentOperation,
pub thread_id: String,
}Expand description
Notification published after a thread attachment is created or deleted.
Fields§
§attachment_id: String§attachment_type: String§identity_key: String§operation: ThreadAttachmentOperation§thread_id: StringTrait Implementations§
Source§impl Clone for ThreadAttachmentUpdatedNotification
impl Clone for ThreadAttachmentUpdatedNotification
Source§fn clone(&self) -> ThreadAttachmentUpdatedNotification
fn clone(&self) -> ThreadAttachmentUpdatedNotification
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<'de> Deserialize<'de> for ThreadAttachmentUpdatedNotification
impl<'de> Deserialize<'de> for ThreadAttachmentUpdatedNotification
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 StructuralPartialEq for ThreadAttachmentUpdatedNotification
Auto Trait Implementations§
impl Freeze for ThreadAttachmentUpdatedNotification
impl RefUnwindSafe for ThreadAttachmentUpdatedNotification
impl Send for ThreadAttachmentUpdatedNotification
impl Sync for ThreadAttachmentUpdatedNotification
impl Unpin for ThreadAttachmentUpdatedNotification
impl UnsafeUnpin for ThreadAttachmentUpdatedNotification
impl UnwindSafe for ThreadAttachmentUpdatedNotification
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