pub struct AccountAttribute {
pub attribute_name: Option<String>,
pub attribute_values: Option<Vec<AccountAttributeValue>>,
}Expand description
Describes an account attribute.
Fields§
§attribute_name: Option<String>The name of the account attribute.
attribute_values: Option<Vec<AccountAttributeValue>>The values for the account attribute.
Trait Implementations§
Source§impl Clone for AccountAttribute
impl Clone for AccountAttribute
Source§fn clone(&self) -> AccountAttribute
fn clone(&self) -> AccountAttribute
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 AccountAttribute
impl Debug for AccountAttribute
Source§impl Default for AccountAttribute
impl Default for AccountAttribute
Source§fn default() -> AccountAttribute
fn default() -> AccountAttribute
Returns the “default value” for a type. Read more
Source§impl PartialEq for AccountAttribute
impl PartialEq for AccountAttribute
impl StructuralPartialEq for AccountAttribute
Auto Trait Implementations§
impl Freeze for AccountAttribute
impl RefUnwindSafe for AccountAttribute
impl Send for AccountAttribute
impl Sync for AccountAttribute
impl Unpin for AccountAttribute
impl UnwindSafe for AccountAttribute
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