[−][src]Struct doublecount::Account
Details for an account, which holds a Commodity with a type of CommodityType.
Fields
id: AccountIDA unique identifier for this Account, currently generated using nanoid.
name: Option<String>The name of this Account
commodity_type_id: CommodityTypeIDThe id of the type of commodity to be stored in this account
category: Option<AccountCategory>The category that this account part of
Implementations
impl Account[src]
pub fn new_with_id<S: Into<String>>(
name: Option<S>,
commodity_type_id: CommodityTypeID,
category: Option<AccountCategory>
) -> Account[src]
name: Option<S>,
commodity_type_id: CommodityTypeID,
category: Option<AccountCategory>
) -> Account
Create a new account with an automatically generated id (using nanoid) and add it to this program state (and create its associated AccountState).
pub fn new<S: Into<String>>(
id: AccountID,
name: Option<S>,
commodity_type_id: CommodityTypeID,
category: Option<AccountCategory>
) -> Account[src]
id: AccountID,
name: Option<S>,
commodity_type_id: CommodityTypeID,
category: Option<AccountCategory>
) -> Account
Create a new account and add it to this program state (and create its associated AccountState).
Trait Implementations
impl Clone for Account[src]
impl Debug for Account[src]
impl<'de> Deserialize<'de> for Account[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl PartialEq<Account> for Account[src]
impl Serialize for Account[src]
Auto Trait Implementations
impl RefUnwindSafe for Account
impl Send for Account
impl Sync for Account
impl Unpin for Account
impl UnwindSafe for Account
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,