pub enum DebugAction {
Show 17 variants
EvalJs,
Screenshot,
InjectCss,
RevertCss,
ListTabs,
GetPerfMetrics,
GetDom,
SetViewport,
ClearViewport,
NetworkConditions,
Navigate,
StorageClear,
StorageInspect,
StorageSet,
ElementAtPoint,
NewTab,
CloseTab,
}Variants§
EvalJs
Screenshot
InjectCss
RevertCss
ListTabs
GetPerfMetrics
GetDom
SetViewport
ClearViewport
NetworkConditions
StorageClear
StorageInspect
StorageSet
ElementAtPoint
NewTab
CloseTab
Trait Implementations§
Source§impl Clone for DebugAction
impl Clone for DebugAction
Source§fn clone(&self) -> DebugAction
fn clone(&self) -> DebugAction
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 moreSource§impl Debug for DebugAction
impl Debug for DebugAction
Source§impl<'de> Deserialize<'de> for DebugAction
impl<'de> Deserialize<'de> for DebugAction
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 DebugAction
impl JsonSchema for DebugAction
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 DebugAction
impl PartialEq for DebugAction
Source§impl Serialize for DebugAction
impl Serialize for DebugAction
impl Copy for DebugAction
impl Eq for DebugAction
impl StructuralPartialEq for DebugAction
Auto Trait Implementations§
impl Freeze for DebugAction
impl RefUnwindSafe for DebugAction
impl Send for DebugAction
impl Sync for DebugAction
impl Unpin for DebugAction
impl UnsafeUnpin for DebugAction
impl UnwindSafe for DebugAction
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