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