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