pub struct SecurityRegistration { /* private fields */ }Expand description
Event registration interface for Security domain.
Implementations§
Source§impl SecurityRegistration
impl SecurityRegistration
Sourcepub fn certificate_error<F, Fut>(&self, callback: F)
pub fn certificate_error<F, Fut>(&self, callback: F)
There is a certificate error. If overriding certificate errors is enabled, then it should be
handled with the handleCertificateError command. Note: this event does not fire if the
certificate error has been allowed internally. Only one client per target should override
certificate errors at the same time.
Sourcepub fn visible_security_state_changed<F, Fut>(&self, callback: F)
pub fn visible_security_state_changed<F, Fut>(&self, callback: F)
The security state of the page changed.
Auto Trait Implementations§
impl Freeze for SecurityRegistration
impl RefUnwindSafe for SecurityRegistration
impl Send for SecurityRegistration
impl Sync for SecurityRegistration
impl Unpin for SecurityRegistration
impl UnsafeUnpin for SecurityRegistration
impl UnwindSafe for SecurityRegistration
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