pub struct AccountList {
pub items: Vec<Account>,
}
Fields§
§items: Vec<Account>
Implementations§
Source§impl AccountList
impl AccountList
pub fn new(items: Vec<Account>) -> AccountList
Trait Implementations§
Source§impl Clone for AccountList
impl Clone for AccountList
Source§fn clone(&self) -> AccountList
fn clone(&self) -> AccountList
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 AccountList
impl Debug for AccountList
Source§impl Default for AccountList
impl Default for AccountList
Source§fn default() -> AccountList
fn default() -> AccountList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AccountList
impl<'de> Deserialize<'de> for AccountList
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 AccountList
impl PartialEq for AccountList
Source§impl Serialize for AccountList
impl Serialize for AccountList
impl StructuralPartialEq for AccountList
Auto Trait Implementations§
impl Freeze for AccountList
impl RefUnwindSafe for AccountList
impl Send for AccountList
impl Sync for AccountList
impl Unpin for AccountList
impl UnwindSafe for AccountList
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