pub struct SelectAccount {
pub method: SelectAccountMethod,
pub params: SelectAccountParams,
}Fields§
§method: SelectAccountMethod§params: SelectAccountParamsImplementations§
Source§impl SelectAccount
impl SelectAccount
pub fn builder() -> SelectAccountBuilder
Source§impl SelectAccount
impl SelectAccount
pub const IDENTIFIER: &'static str = "FedCm.selectAccount"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SelectAccount
impl Clone for SelectAccount
Source§fn clone(&self) -> SelectAccount
fn clone(&self) -> SelectAccount
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 SelectAccount
impl CommandResult for SelectAccount
type Result = SelectAccountResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SelectAccount
impl Debug for SelectAccount
Source§impl<'de> Deserialize<'de> for SelectAccount
impl<'de> Deserialize<'de> for SelectAccount
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<SelectAccount> for BrowserProtocolCommands
impl From<SelectAccount> for BrowserProtocolCommands
Source§fn from(v: SelectAccount) -> Self
fn from(v: SelectAccount) -> Self
Converts to this type from the input type.
Source§impl From<SelectAccount> for Command
impl From<SelectAccount> for Command
Source§fn from(v: SelectAccount) -> Self
fn from(v: SelectAccount) -> Self
Converts to this type from the input type.
Source§impl From<SelectAccount> for FedCmCommands
impl From<SelectAccount> for FedCmCommands
Source§fn from(v: SelectAccount) -> Self
fn from(v: SelectAccount) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SelectAccount
impl PartialEq for SelectAccount
Source§impl Serialize for SelectAccount
impl Serialize for SelectAccount
Source§impl TryFrom<BrowserProtocolCommands> for SelectAccount
impl TryFrom<BrowserProtocolCommands> for SelectAccount
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, <SelectAccount as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SelectAccount as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SelectAccount
impl TryFrom<Command> for SelectAccount
Source§impl TryFrom<FedCmCommands> for SelectAccount
impl TryFrom<FedCmCommands> for SelectAccount
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, <SelectAccount as TryFrom<FedCmCommands>>::Error>
fn try_from( e: FedCmCommands, ) -> Result<Self, <SelectAccount as TryFrom<FedCmCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SelectAccount
Auto Trait Implementations§
impl Freeze for SelectAccount
impl RefUnwindSafe for SelectAccount
impl Send for SelectAccount
impl Sync for SelectAccount
impl Unpin for SelectAccount
impl UnsafeUnpin for SelectAccount
impl UnwindSafe for SelectAccount
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