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 Debug for SaveAccount
impl Debug 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