pub struct AccountHistoryAccount {
pub account_id: String,
pub observed_at: String,
pub source: String,
pub name: Option<String>,
pub email: Option<String>,
pub plan_type: Option<String>,
}Fields§
§account_id: String§observed_at: String§source: String§name: Option<String>§email: Option<String>§plan_type: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for AccountHistoryAccount
impl Clone for AccountHistoryAccount
Source§fn clone(&self) -> AccountHistoryAccount
fn clone(&self) -> AccountHistoryAccount
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 AccountHistoryAccount
impl Debug for AccountHistoryAccount
Source§impl<'de> Deserialize<'de> for AccountHistoryAccount
impl<'de> Deserialize<'de> for AccountHistoryAccount
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 AccountHistoryAccount
impl PartialEq for AccountHistoryAccount
Source§fn eq(&self, other: &AccountHistoryAccount) -> bool
fn eq(&self, other: &AccountHistoryAccount) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountHistoryAccount
impl Serialize for AccountHistoryAccount
impl Eq for AccountHistoryAccount
impl StructuralPartialEq for AccountHistoryAccount
Auto Trait Implementations§
impl Freeze for AccountHistoryAccount
impl RefUnwindSafe for AccountHistoryAccount
impl Send for AccountHistoryAccount
impl Sync for AccountHistoryAccount
impl Unpin for AccountHistoryAccount
impl UnsafeUnpin for AccountHistoryAccount
impl UnwindSafe for AccountHistoryAccount
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