pub struct DevtoolsReport {
pub tree: String,
pub state: String,
pub signals: String,
}Expand description
A complete devtools report: the tree view, the agent-state view, and the signal-activity view.
Fields§
§tree: StringPretty-printed UITree with per-node metadata annotations.
state: StringHuman-readable listing of the AgentState snapshot.
signals: StringPer-label signal-write counts (empty when no signals are labeled).
Trait Implementations§
Source§impl Clone for DevtoolsReport
impl Clone for DevtoolsReport
Source§fn clone(&self) -> DevtoolsReport
fn clone(&self) -> DevtoolsReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DevtoolsReport
impl RefUnwindSafe for DevtoolsReport
impl Send for DevtoolsReport
impl Sync for DevtoolsReport
impl Unpin for DevtoolsReport
impl UnsafeUnpin for DevtoolsReport
impl UnwindSafe for DevtoolsReport
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