pub struct ThreadRelationship {
pub parent_thread_id: ThreadId,
pub child_thread_id: ThreadId,
pub creation_node_id: NodeId,
pub creation_function: String,
pub creation_time: u64,
}Expand description
Thread relationship information
Fields§
§parent_thread_id: ThreadId§child_thread_id: ThreadId§creation_node_id: NodeId§creation_function: String§creation_time: u64Trait Implementations§
Source§impl Clone for ThreadRelationship
impl Clone for ThreadRelationship
Source§fn clone(&self) -> ThreadRelationship
fn clone(&self) -> ThreadRelationship
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 moreAuto 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