pub struct ThreadNameUpdatedNotification {
pub thread_id: String,
pub thread_name: Option<String>,
}Fields§
§thread_id: String§thread_name: Option<String>Trait Implementations§
Source§impl Clone for ThreadNameUpdatedNotification
impl Clone for ThreadNameUpdatedNotification
Source§fn clone(&self) -> ThreadNameUpdatedNotification
fn clone(&self) -> ThreadNameUpdatedNotification
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 ThreadNameUpdatedNotification
impl<'de> Deserialize<'de> for ThreadNameUpdatedNotification
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 ThreadNameUpdatedNotification
impl PartialEq for ThreadNameUpdatedNotification
Source§fn eq(&self, other: &ThreadNameUpdatedNotification) -> bool
fn eq(&self, other: &ThreadNameUpdatedNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ThreadNameUpdatedNotification
Auto Trait Implementations§
impl Freeze for ThreadNameUpdatedNotification
impl RefUnwindSafe for ThreadNameUpdatedNotification
impl Send for ThreadNameUpdatedNotification
impl Sync for ThreadNameUpdatedNotification
impl Unpin for ThreadNameUpdatedNotification
impl UnsafeUnpin for ThreadNameUpdatedNotification
impl UnwindSafe for ThreadNameUpdatedNotification
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