pub enum ExpenseCategory {
Travel,
Meals,
Lodging,
Transportation,
Office,
Entertainment,
Training,
Other,
}Expand description
Category of an expense line item.
Variants§
Travel
Airfare, mileage, etc.
Meals
Business meals and dining
Lodging
Hotel and accommodation
Transportation
Taxi, rideshare, rental car, parking
Office
Office supplies and equipment
Entertainment
Client entertainment
Training
Professional development and training
Other
Miscellaneous expenses
Trait Implementations§
Source§impl Clone for ExpenseCategory
impl Clone for ExpenseCategory
Source§fn clone(&self) -> ExpenseCategory
fn clone(&self) -> ExpenseCategory
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 ExpenseCategory
impl Debug for ExpenseCategory
Source§impl<'de> Deserialize<'de> for ExpenseCategory
impl<'de> Deserialize<'de> for ExpenseCategory
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 Hash for ExpenseCategory
impl Hash for ExpenseCategory
Source§impl PartialEq for ExpenseCategory
impl PartialEq for ExpenseCategory
Source§impl Serialize for ExpenseCategory
impl Serialize for ExpenseCategory
impl Copy for ExpenseCategory
impl Eq for ExpenseCategory
impl StructuralPartialEq for ExpenseCategory
Auto Trait Implementations§
impl Freeze for ExpenseCategory
impl RefUnwindSafe for ExpenseCategory
impl Send for ExpenseCategory
impl Sync for ExpenseCategory
impl Unpin for ExpenseCategory
impl UnwindSafe for ExpenseCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.