pub struct TaskInfo {
pub id: TaskwdId,
pub name: String,
}Expand description
What a monitor is told about, and what taskwd_show lists.
Fields§
§id: TaskwdIdIdentity of this registration.
name: StringThe name the task registered under. C reads the thread’s name out of
the OS at report time (epicsThreadGetName, taskwd.c:113); a task
here names itself, because a future has no thread name to read.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskInfo
impl RefUnwindSafe for TaskInfo
impl Send for TaskInfo
impl Sync for TaskInfo
impl Unpin for TaskInfo
impl UnsafeUnpin for TaskInfo
impl UnwindSafe for TaskInfo
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