pub struct VisibleSecurityStateChanged {
pub method: VisibleSecurityStateChangedMethod,
pub params: VisibleSecurityStateChangedParams,
}Expand description
The security state of the page changed. visibleSecurityStateChanged
Fields§
§method: VisibleSecurityStateChangedMethod§params: VisibleSecurityStateChangedParamsImplementations§
Source§impl VisibleSecurityStateChanged
impl VisibleSecurityStateChanged
pub const IDENTIFIER: &'static str = "Security.visibleSecurityStateChanged"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for VisibleSecurityStateChanged
impl Clone for VisibleSecurityStateChanged
Source§fn clone(&self) -> VisibleSecurityStateChanged
fn clone(&self) -> VisibleSecurityStateChanged
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 Debug for VisibleSecurityStateChanged
impl Debug for VisibleSecurityStateChanged
Source§impl<'de> Deserialize<'de> for VisibleSecurityStateChanged
impl<'de> Deserialize<'de> for VisibleSecurityStateChanged
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<VisibleSecurityStateChanged> for BrowserProtocolEvents
impl From<VisibleSecurityStateChanged> for BrowserProtocolEvents
Source§fn from(v: VisibleSecurityStateChanged) -> Self
fn from(v: VisibleSecurityStateChanged) -> Self
Converts to this type from the input type.
Source§impl From<VisibleSecurityStateChanged> for Event
impl From<VisibleSecurityStateChanged> for Event
Source§fn from(v: VisibleSecurityStateChanged) -> Self
fn from(v: VisibleSecurityStateChanged) -> Self
Converts to this type from the input type.
Source§impl From<VisibleSecurityStateChanged> for SecurityEvents
impl From<VisibleSecurityStateChanged> for SecurityEvents
Source§fn from(v: VisibleSecurityStateChanged) -> Self
fn from(v: VisibleSecurityStateChanged) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for VisibleSecurityStateChanged
impl TryFrom<BrowserProtocolEvents> for VisibleSecurityStateChanged
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <VisibleSecurityStateChanged as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <VisibleSecurityStateChanged as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for VisibleSecurityStateChanged
impl TryFrom<Event> for VisibleSecurityStateChanged
Source§impl TryFrom<SecurityEvents> for VisibleSecurityStateChanged
impl TryFrom<SecurityEvents> for VisibleSecurityStateChanged
Source§type Error = SecurityEvents
type Error = SecurityEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: SecurityEvents,
) -> Result<Self, <VisibleSecurityStateChanged as TryFrom<SecurityEvents>>::Error>
fn try_from( e: SecurityEvents, ) -> Result<Self, <VisibleSecurityStateChanged as TryFrom<SecurityEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for VisibleSecurityStateChanged
Auto Trait Implementations§
impl Freeze for VisibleSecurityStateChanged
impl RefUnwindSafe for VisibleSecurityStateChanged
impl Send for VisibleSecurityStateChanged
impl Sync for VisibleSecurityStateChanged
impl Unpin for VisibleSecurityStateChanged
impl UnsafeUnpin for VisibleSecurityStateChanged
impl UnwindSafe for VisibleSecurityStateChanged
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