pub enum SecurityEvents {
VisibleSecurityStateChanged(VisibleSecurityStateChanged),
}Variants§
VisibleSecurityStateChanged(VisibleSecurityStateChanged)
Implementations§
Source§impl SecurityEvents
impl SecurityEvents
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SecurityEvents
impl Clone for SecurityEvents
Source§fn clone(&self) -> SecurityEvents
fn clone(&self) -> SecurityEvents
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 SecurityEvents
impl Debug for SecurityEvents
Source§impl<'de> Deserialize<'de> for SecurityEvents
impl<'de> Deserialize<'de> for SecurityEvents
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<SecurityEvents> for BrowserProtocolEvents
impl From<SecurityEvents> for BrowserProtocolEvents
Source§fn from(v: SecurityEvents) -> Self
fn from(v: SecurityEvents) -> Self
Converts to this type from the input type.
Source§impl From<SecurityEvents> for Event
impl From<SecurityEvents> for Event
Source§fn from(v: SecurityEvents) -> Self
fn from(v: SecurityEvents) -> 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 PartialEq for SecurityEvents
impl PartialEq for SecurityEvents
Source§impl Serialize for SecurityEvents
impl Serialize for SecurityEvents
Source§impl TryFrom<BrowserProtocolEvents> for SecurityEvents
impl TryFrom<BrowserProtocolEvents> for SecurityEvents
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, <SecurityEvents as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <SecurityEvents as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for SecurityEvents
impl TryFrom<Event> for SecurityEvents
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 SecurityEvents
Auto Trait Implementations§
impl Freeze for SecurityEvents
impl RefUnwindSafe for SecurityEvents
impl Send for SecurityEvents
impl Sync for SecurityEvents
impl Unpin for SecurityEvents
impl UnsafeUnpin for SecurityEvents
impl UnwindSafe for SecurityEvents
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