pub struct SaveAccount {
pub name: String,
pub acct_type: SaveAccountType,
pub balance: i64,
}Expand description
The account to create.
Fields§
§name: String§acct_type: SaveAccountType§balance: i64Trait Implementations§
Source§impl Clone for SaveAccount
impl Clone for SaveAccount
Source§fn clone(&self) -> SaveAccount
fn clone(&self) -> SaveAccount
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 SaveAccount
impl Debug for SaveAccount
Source§impl PartialEq for SaveAccount
impl PartialEq for SaveAccount
Source§impl Serialize for SaveAccount
impl Serialize for SaveAccount
impl StructuralPartialEq for SaveAccount
Auto Trait Implementations§
impl Freeze for SaveAccount
impl RefUnwindSafe for SaveAccount
impl Send for SaveAccount
impl Sync for SaveAccount
impl Unpin for SaveAccount
impl UnsafeUnpin for SaveAccount
impl UnwindSafe for SaveAccount
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