pub struct DialogClosed {
pub method: DialogClosedMethod,
pub params: DialogClosedParams,
}Expand description
Triggered when a dialog is closed, either by user action, JS abort, or a command below. dialogClosed
Fields§
§method: DialogClosedMethod§params: DialogClosedParamsImplementations§
Source§impl DialogClosed
impl DialogClosed
pub const IDENTIFIER: &'static str = "FedCm.dialogClosed"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for DialogClosed
impl Clone for DialogClosed
Source§fn clone(&self) -> DialogClosed
fn clone(&self) -> DialogClosed
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 DialogClosed
impl Debug for DialogClosed
Source§impl<'de> Deserialize<'de> for DialogClosed
impl<'de> Deserialize<'de> for DialogClosed
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 BrowserProtocolEvents
impl From<DialogClosed> for BrowserProtocolEvents
Source§fn from(v: DialogClosed) -> Self
fn from(v: DialogClosed) -> Self
Converts to this type from the input type.
Source§impl From<DialogClosed> for Event
impl From<DialogClosed> for Event
Source§fn from(v: DialogClosed) -> Self
fn from(v: DialogClosed) -> Self
Converts to this type from the input type.
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 PartialEq for DialogClosed
impl PartialEq for DialogClosed
Source§impl Serialize for DialogClosed
impl Serialize for DialogClosed
Source§impl TryFrom<BrowserProtocolEvents> for DialogClosed
impl TryFrom<BrowserProtocolEvents> for DialogClosed
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, <DialogClosed as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <DialogClosed as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for DialogClosed
impl TryFrom<Event> for DialogClosed
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.
impl StructuralPartialEq for DialogClosed
Auto Trait Implementations§
impl Freeze for DialogClosed
impl RefUnwindSafe for DialogClosed
impl Send for DialogClosed
impl Sync for DialogClosed
impl Unpin for DialogClosed
impl UnsafeUnpin for DialogClosed
impl UnwindSafe for DialogClosed
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