pub struct ClickDialogButton {
pub method: ClickDialogButtonMethod,
pub params: ClickDialogButtonParams,
}Fields§
§method: ClickDialogButtonMethod§params: ClickDialogButtonParamsImplementations§
Source§impl ClickDialogButton
impl ClickDialogButton
pub fn builder() -> ClickDialogButtonBuilder
Source§impl ClickDialogButton
impl ClickDialogButton
pub const IDENTIFIER: &'static str = "FedCm.clickDialogButton"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ClickDialogButton
impl Clone for ClickDialogButton
Source§fn clone(&self) -> ClickDialogButton
fn clone(&self) -> ClickDialogButton
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 CommandResult for ClickDialogButton
impl CommandResult for ClickDialogButton
type Result = ClickDialogButtonResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ClickDialogButton
impl Debug for ClickDialogButton
Source§impl<'de> Deserialize<'de> for ClickDialogButton
impl<'de> Deserialize<'de> for ClickDialogButton
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<ClickDialogButton> for BrowserProtocolCommands
impl From<ClickDialogButton> for BrowserProtocolCommands
Source§fn from(v: ClickDialogButton) -> Self
fn from(v: ClickDialogButton) -> Self
Converts to this type from the input type.
Source§impl From<ClickDialogButton> for Command
impl From<ClickDialogButton> for Command
Source§fn from(v: ClickDialogButton) -> Self
fn from(v: ClickDialogButton) -> Self
Converts to this type from the input type.
Source§impl From<ClickDialogButton> for FedCmCommands
impl From<ClickDialogButton> for FedCmCommands
Source§fn from(v: ClickDialogButton) -> Self
fn from(v: ClickDialogButton) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ClickDialogButton
impl PartialEq for ClickDialogButton
Source§impl Serialize for ClickDialogButton
impl Serialize for ClickDialogButton
Source§impl TryFrom<BrowserProtocolCommands> for ClickDialogButton
impl TryFrom<BrowserProtocolCommands> for ClickDialogButton
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <ClickDialogButton as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ClickDialogButton as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ClickDialogButton
impl TryFrom<Command> for ClickDialogButton
Source§impl TryFrom<FedCmCommands> for ClickDialogButton
impl TryFrom<FedCmCommands> for ClickDialogButton
Source§type Error = FedCmCommands
type Error = FedCmCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: FedCmCommands,
) -> Result<Self, <ClickDialogButton as TryFrom<FedCmCommands>>::Error>
fn try_from( e: FedCmCommands, ) -> Result<Self, <ClickDialogButton as TryFrom<FedCmCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ClickDialogButton
Auto Trait Implementations§
impl Freeze for ClickDialogButton
impl RefUnwindSafe for ClickDialogButton
impl Send for ClickDialogButton
impl Sync for ClickDialogButton
impl Unpin for ClickDialogButton
impl UnsafeUnpin for ClickDialogButton
impl UnwindSafe for ClickDialogButton
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