pub struct StopViolationsReport {
pub method: StopViolationsReportMethod,
pub params: StopViolationsReportParams,
}Expand description
Stop violation reporting. stopViolationsReport
Fields§
§method: StopViolationsReportMethod§params: StopViolationsReportParamsImplementations§
Source§impl StopViolationsReport
impl StopViolationsReport
pub fn builder() -> StopViolationsReportBuilder
Source§impl StopViolationsReport
impl StopViolationsReport
pub const IDENTIFIER: &'static str = "Log.stopViolationsReport"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StopViolationsReport
impl Clone for StopViolationsReport
Source§fn clone(&self) -> StopViolationsReport
fn clone(&self) -> StopViolationsReport
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 CommandResult for StopViolationsReport
impl CommandResult for StopViolationsReport
type Result = StopViolationsReportResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StopViolationsReport
impl Debug for StopViolationsReport
Source§impl<'de> Deserialize<'de> for StopViolationsReport
impl<'de> Deserialize<'de> for StopViolationsReport
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 From<StopViolationsReport> for BrowserProtocolCommands
impl From<StopViolationsReport> for BrowserProtocolCommands
Source§fn from(v: StopViolationsReport) -> Self
fn from(v: StopViolationsReport) -> Self
Converts to this type from the input type.
Source§impl From<StopViolationsReport> for Command
impl From<StopViolationsReport> for Command
Source§fn from(v: StopViolationsReport) -> Self
fn from(v: StopViolationsReport) -> Self
Converts to this type from the input type.
Source§impl From<StopViolationsReport> for LogCommands
impl From<StopViolationsReport> for LogCommands
Source§fn from(v: StopViolationsReport) -> Self
fn from(v: StopViolationsReport) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StopViolationsReport
impl PartialEq for StopViolationsReport
Source§impl Serialize for StopViolationsReport
impl Serialize for StopViolationsReport
Source§impl TryFrom<BrowserProtocolCommands> for StopViolationsReport
impl TryFrom<BrowserProtocolCommands> for StopViolationsReport
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <StopViolationsReport as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StopViolationsReport as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StopViolationsReport
impl TryFrom<Command> for StopViolationsReport
Source§impl TryFrom<LogCommands> for StopViolationsReport
impl TryFrom<LogCommands> for StopViolationsReport
Source§type Error = LogCommands
type Error = LogCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: LogCommands,
) -> Result<Self, <StopViolationsReport as TryFrom<LogCommands>>::Error>
fn try_from( e: LogCommands, ) -> Result<Self, <StopViolationsReport as TryFrom<LogCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StopViolationsReport
Auto Trait Implementations§
impl Freeze for StopViolationsReport
impl RefUnwindSafe for StopViolationsReport
impl Send for StopViolationsReport
impl Sync for StopViolationsReport
impl Unpin for StopViolationsReport
impl UnsafeUnpin for StopViolationsReport
impl UnwindSafe for StopViolationsReport
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