pub struct ProviderAccount {
pub provider: String,
pub placement: Placement,
pub account_id: String,
pub ownership: ProviderAccountOwnership,
pub display_name: Option<String>,
pub enabled: bool,
pub status: String,
pub status_message: Option<String>,
pub provider_data: Value,
}Fields§
§provider: String§placement: Placement§account_id: String§ownership: ProviderAccountOwnership§display_name: Option<String>§enabled: bool§status: String§status_message: Option<String>§provider_data: ValueTrait Implementations§
Source§impl Clone for ProviderAccount
impl Clone for ProviderAccount
Source§fn clone(&self) -> ProviderAccount
fn clone(&self) -> ProviderAccount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProviderAccount
impl Debug for ProviderAccount
Source§impl<'de> Deserialize<'de> for ProviderAccount
impl<'de> Deserialize<'de> for ProviderAccount
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 ProviderAccount
impl PartialEq for ProviderAccount
Source§impl Serialize for ProviderAccount
impl Serialize for ProviderAccount
impl StructuralPartialEq for ProviderAccount
Auto Trait Implementations§
impl Freeze for ProviderAccount
impl RefUnwindSafe for ProviderAccount
impl Send for ProviderAccount
impl Sync for ProviderAccount
impl Unpin for ProviderAccount
impl UnsafeUnpin for ProviderAccount
impl UnwindSafe for ProviderAccount
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