pub enum LogsAction {
Console,
Network,
Ipc,
Navigation,
Dialogs,
Events,
SlowIpc,
}Expand description
Action for the compound logs tool.
Variants§
Console
Get captured console.log/warn/error entries.
Network
Get intercepted fetch/XHR network requests.
Ipc
Get IPC call log.
Get URL change history.
Dialogs
Get alert/confirm/prompt dialog events.
Events
Get combined event stream.
SlowIpc
Find slow IPC calls exceeding a threshold.
Trait Implementations§
Source§impl Clone for LogsAction
impl Clone for LogsAction
Source§fn clone(&self) -> LogsAction
fn clone(&self) -> LogsAction
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 LogsAction
impl Debug for LogsAction
Source§impl<'de> Deserialize<'de> for LogsAction
impl<'de> Deserialize<'de> for LogsAction
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 Display for LogsAction
impl Display for LogsAction
Source§impl JsonSchema for LogsAction
impl JsonSchema for LogsAction
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 moreSource§impl PartialEq for LogsAction
impl PartialEq for LogsAction
Source§fn eq(&self, other: &LogsAction) -> bool
fn eq(&self, other: &LogsAction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LogsAction
impl Serialize for LogsAction
impl Copy for LogsAction
impl Eq for LogsAction
impl StructuralPartialEq for LogsAction
Auto Trait Implementations§
impl Freeze for LogsAction
impl RefUnwindSafe for LogsAction
impl Send for LogsAction
impl Sync for LogsAction
impl Unpin for LogsAction
impl UnsafeUnpin for LogsAction
impl UnwindSafe for LogsAction
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