Struct ThreadDetails
pub struct ThreadDetails {
pub name: String,
pub priority: u32,
pub group: Option<String>,
}Expand description
Thread details for monitoring
Fields§
§name: StringThread name
priority: u32Thread priority
group: Option<String>Thread group
Trait Implementations§
§impl Clone for ThreadDetails
impl Clone for ThreadDetails
§fn clone(&self) -> ThreadDetails
fn clone(&self) -> ThreadDetails
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 ThreadDetails
impl RefUnwindSafe for ThreadDetails
impl Send for ThreadDetails
impl Sync for ThreadDetails
impl Unpin for ThreadDetails
impl UnwindSafe for ThreadDetails
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