pub struct ThreadStarted {
pub thread_id: String,
pub extra: BTreeMap<String, Value>,
}Expand description
Marks the start of a new thread.
Fields§
§thread_id: String§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for ThreadStarted
impl Clone for ThreadStarted
Source§fn clone(&self) -> ThreadStarted
fn clone(&self) -> ThreadStarted
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 ThreadStarted
impl Debug for ThreadStarted
Source§impl<'de> Deserialize<'de> for ThreadStarted
impl<'de> Deserialize<'de> for ThreadStarted
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 ThreadStarted
impl RefUnwindSafe for ThreadStarted
impl Send for ThreadStarted
impl Sync for ThreadStarted
impl Unpin for ThreadStarted
impl UnsafeUnpin for ThreadStarted
impl UnwindSafe for ThreadStarted
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