pub struct StartViolationsReport {
pub method: StartViolationsReportMethod,
pub params: StartViolationsReportParams,
}Expand description
start violation reporting. startViolationsReport
Fields§
§method: StartViolationsReportMethod§params: StartViolationsReportParamsImplementations§
Source§impl StartViolationsReport
impl StartViolationsReport
pub fn builder() -> StartViolationsReportBuilder
Source§impl StartViolationsReport
impl StartViolationsReport
pub const IDENTIFIER: &'static str = "Log.startViolationsReport"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StartViolationsReport
impl Clone for StartViolationsReport
Source§fn clone(&self) -> StartViolationsReport
fn clone(&self) -> StartViolationsReport
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 StartViolationsReport
impl CommandResult for StartViolationsReport
type Result = StartViolationsReportResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StartViolationsReport
impl Debug for StartViolationsReport
Source§impl<'de> Deserialize<'de> for StartViolationsReport
impl<'de> Deserialize<'de> for StartViolationsReport
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<StartViolationsReport> for BrowserProtocolCommands
impl From<StartViolationsReport> for BrowserProtocolCommands
Source§fn from(v: StartViolationsReport) -> Self
fn from(v: StartViolationsReport) -> Self
Converts to this type from the input type.
Source§impl From<StartViolationsReport> for Command
impl From<StartViolationsReport> for Command
Source§fn from(v: StartViolationsReport) -> Self
fn from(v: StartViolationsReport) -> Self
Converts to this type from the input type.
Source§impl From<StartViolationsReport> for LogCommands
impl From<StartViolationsReport> for LogCommands
Source§fn from(v: StartViolationsReport) -> Self
fn from(v: StartViolationsReport) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StartViolationsReport
impl PartialEq for StartViolationsReport
Source§impl Serialize for StartViolationsReport
impl Serialize for StartViolationsReport
Source§impl TryFrom<BrowserProtocolCommands> for StartViolationsReport
impl TryFrom<BrowserProtocolCommands> for StartViolationsReport
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, <StartViolationsReport as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StartViolationsReport as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StartViolationsReport
impl TryFrom<Command> for StartViolationsReport
Source§impl TryFrom<LogCommands> for StartViolationsReport
impl TryFrom<LogCommands> for StartViolationsReport
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, <StartViolationsReport as TryFrom<LogCommands>>::Error>
fn try_from( e: LogCommands, ) -> Result<Self, <StartViolationsReport as TryFrom<LogCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StartViolationsReport
Auto Trait Implementations§
impl Freeze for StartViolationsReport
impl RefUnwindSafe for StartViolationsReport
impl Send for StartViolationsReport
impl Sync for StartViolationsReport
impl Unpin for StartViolationsReport
impl UnsafeUnpin for StartViolationsReport
impl UnwindSafe for StartViolationsReport
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