pub enum ExplainAction {
Summary,
LastAction,
Diff,
}Expand description
Actions available in the explain compound tool.
Variants§
Summary
Summarize recent activity across all layers (IPC, DOM, console, network, window events).
LastAction
Correlate the most recent burst of activity into a causal timeline.
Diff
Report what changed in the last N seconds (events, IPC calls, console entries).
Trait Implementations§
Source§impl Clone for ExplainAction
impl Clone for ExplainAction
Source§fn clone(&self) -> ExplainAction
fn clone(&self) -> ExplainAction
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 moreSource§impl Debug for ExplainAction
impl Debug for ExplainAction
Source§impl<'de> Deserialize<'de> for ExplainAction
impl<'de> Deserialize<'de> for ExplainAction
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
Source§impl JsonSchema for ExplainAction
impl JsonSchema for ExplainAction
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl Copy for ExplainAction
Auto Trait Implementations§
impl Freeze for ExplainAction
impl RefUnwindSafe for ExplainAction
impl Send for ExplainAction
impl Sync for ExplainAction
impl Unpin for ExplainAction
impl UnsafeUnpin for ExplainAction
impl UnwindSafe for ExplainAction
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