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