pub struct ThreadRelationship {
pub parent_thread_id: u64,
pub child_thread_id: u64,
pub creation_function: String,
pub creation_time: String,
}Expand description
Thread relationship information for JSON
Fields§
§parent_thread_id: u64§child_thread_id: u64§creation_function: String§creation_time: StringTrait Implementations§
Source§impl Debug for ThreadRelationship
impl Debug for ThreadRelationship
Source§impl<'de> Deserialize<'de> for ThreadRelationship
impl<'de> Deserialize<'de> for ThreadRelationship
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 ThreadRelationship
impl RefUnwindSafe for ThreadRelationship
impl Send for ThreadRelationship
impl Sync for ThreadRelationship
impl Unpin for ThreadRelationship
impl UnsafeUnpin for ThreadRelationship
impl UnwindSafe for ThreadRelationship
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