pub struct AccountProviderId {
pub provider_id: String,
pub account_id: String,
}Fields§
§provider_id: StringThe ID of the provider associated with the account.
account_id: StringThe ID of the account associated with the provider.
Implementations§
Source§impl AccountProviderId
impl AccountProviderId
pub fn new(provider_id: String, account_id: String) -> AccountProviderId
Trait Implementations§
Source§impl Clone for AccountProviderId
impl Clone for AccountProviderId
Source§fn clone(&self) -> AccountProviderId
fn clone(&self) -> AccountProviderId
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 AccountProviderId
impl Debug for AccountProviderId
Source§impl Default for AccountProviderId
impl Default for AccountProviderId
Source§fn default() -> AccountProviderId
fn default() -> AccountProviderId
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountProviderId
impl<'de> Deserialize<'de> for AccountProviderId
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 PartialEq for AccountProviderId
impl PartialEq for AccountProviderId
Source§impl Serialize for AccountProviderId
impl Serialize for AccountProviderId
impl StructuralPartialEq for AccountProviderId
Auto Trait Implementations§
impl Freeze for AccountProviderId
impl RefUnwindSafe for AccountProviderId
impl Send for AccountProviderId
impl Sync for AccountProviderId
impl Unpin for AccountProviderId
impl UnwindSafe for AccountProviderId
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