pub struct SetIgnoreCertificateErrors {
pub method: SetIgnoreCertificateErrorsMethod,
pub params: SetIgnoreCertificateErrorsParams,
}Expand description
Enable/disable whether all certificate errors should be ignored. setIgnoreCertificateErrors
Fields§
§method: SetIgnoreCertificateErrorsMethod§params: SetIgnoreCertificateErrorsParamsImplementations§
Source§impl SetIgnoreCertificateErrors
impl SetIgnoreCertificateErrors
pub const IDENTIFIER: &'static str = "Security.setIgnoreCertificateErrors"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetIgnoreCertificateErrors
impl Clone for SetIgnoreCertificateErrors
Source§fn clone(&self) -> SetIgnoreCertificateErrors
fn clone(&self) -> SetIgnoreCertificateErrors
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 SetIgnoreCertificateErrors
impl CommandResult for SetIgnoreCertificateErrors
type Result = SetIgnoreCertificateErrorsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetIgnoreCertificateErrors
impl Debug for SetIgnoreCertificateErrors
Source§impl<'de> Deserialize<'de> for SetIgnoreCertificateErrors
impl<'de> Deserialize<'de> for SetIgnoreCertificateErrors
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<SetIgnoreCertificateErrors> for BrowserProtocolCommands
impl From<SetIgnoreCertificateErrors> for BrowserProtocolCommands
Source§fn from(v: SetIgnoreCertificateErrors) -> Self
fn from(v: SetIgnoreCertificateErrors) -> Self
Converts to this type from the input type.
Source§impl From<SetIgnoreCertificateErrors> for Command
impl From<SetIgnoreCertificateErrors> for Command
Source§fn from(v: SetIgnoreCertificateErrors) -> Self
fn from(v: SetIgnoreCertificateErrors) -> Self
Converts to this type from the input type.
Source§impl From<SetIgnoreCertificateErrors> for SecurityCommands
impl From<SetIgnoreCertificateErrors> for SecurityCommands
Source§fn from(v: SetIgnoreCertificateErrors) -> Self
fn from(v: SetIgnoreCertificateErrors) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolCommands> for SetIgnoreCertificateErrors
impl TryFrom<BrowserProtocolCommands> for SetIgnoreCertificateErrors
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, <SetIgnoreCertificateErrors as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetIgnoreCertificateErrors as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetIgnoreCertificateErrors
impl TryFrom<Command> for SetIgnoreCertificateErrors
Source§impl TryFrom<SecurityCommands> for SetIgnoreCertificateErrors
impl TryFrom<SecurityCommands> for SetIgnoreCertificateErrors
Source§type Error = SecurityCommands
type Error = SecurityCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: SecurityCommands,
) -> Result<Self, <SetIgnoreCertificateErrors as TryFrom<SecurityCommands>>::Error>
fn try_from( e: SecurityCommands, ) -> Result<Self, <SetIgnoreCertificateErrors as TryFrom<SecurityCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetIgnoreCertificateErrors
Auto Trait Implementations§
impl Freeze for SetIgnoreCertificateErrors
impl RefUnwindSafe for SetIgnoreCertificateErrors
impl Send for SetIgnoreCertificateErrors
impl Sync for SetIgnoreCertificateErrors
impl Unpin for SetIgnoreCertificateErrors
impl UnsafeUnpin for SetIgnoreCertificateErrors
impl UnwindSafe for SetIgnoreCertificateErrors
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