pub struct SetOverrideCertificateErrorsParams {
pub override_: bool,
}Expand description
Enable/disable overriding certificate errors. If enabled, all certificate error events need to be handled by the DevTools client and should be answered with ‘handleCertificateError’ commands.
Fields§
§override_: boolIf true, certificate errors will be overridden.
Implementations§
Trait Implementations§
Source§impl Clone for SetOverrideCertificateErrorsParams
impl Clone for SetOverrideCertificateErrorsParams
Source§fn clone(&self) -> SetOverrideCertificateErrorsParams
fn clone(&self) -> SetOverrideCertificateErrorsParams
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 Default for SetOverrideCertificateErrorsParams
impl Default for SetOverrideCertificateErrorsParams
Source§fn default() -> SetOverrideCertificateErrorsParams
fn default() -> SetOverrideCertificateErrorsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SetOverrideCertificateErrorsParams
impl<'de> Deserialize<'de> for SetOverrideCertificateErrorsParams
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
Auto Trait Implementations§
impl Freeze for SetOverrideCertificateErrorsParams
impl RefUnwindSafe for SetOverrideCertificateErrorsParams
impl Send for SetOverrideCertificateErrorsParams
impl Sync for SetOverrideCertificateErrorsParams
impl Unpin for SetOverrideCertificateErrorsParams
impl UnsafeUnpin for SetOverrideCertificateErrorsParams
impl UnwindSafe for SetOverrideCertificateErrorsParams
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