pub struct ThreadStartedNotification {
pub thread: ThreadInfo,
}Expand description
thread/started notification.
Sent once when a thread is created. Carries the full ThreadInfo for
the new thread.
Fields§
§thread: ThreadInfoTrait Implementations§
Source§impl Clone for ThreadStartedNotification
impl Clone for ThreadStartedNotification
Source§fn clone(&self) -> ThreadStartedNotification
fn clone(&self) -> ThreadStartedNotification
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 ThreadStartedNotification
impl Debug for ThreadStartedNotification
Source§impl<'de> Deserialize<'de> for ThreadStartedNotification
impl<'de> Deserialize<'de> for ThreadStartedNotification
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 ThreadStartedNotification
impl RefUnwindSafe for ThreadStartedNotification
impl Send for ThreadStartedNotification
impl Sync for ThreadStartedNotification
impl Unpin for ThreadStartedNotification
impl UnsafeUnpin for ThreadStartedNotification
impl UnwindSafe for ThreadStartedNotification
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