pub enum BillableStatus {
Billable,
NotBillable,
HasBeenBilled,
}Expand description
BillableStatus
Indicates the billable status of an expense line item.
Variants§
Trait Implementations§
Source§impl Clone for BillableStatus
impl Clone for BillableStatus
Source§fn clone(&self) -> BillableStatus
fn clone(&self) -> BillableStatus
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 BillableStatus
impl Debug for BillableStatus
Source§impl Default for BillableStatus
impl Default for BillableStatus
Source§fn default() -> BillableStatus
fn default() -> BillableStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillableStatus
impl<'de> Deserialize<'de> for BillableStatus
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 BillableStatus
impl PartialEq for BillableStatus
Source§impl Serialize for BillableStatus
impl Serialize for BillableStatus
impl StructuralPartialEq for BillableStatus
Auto Trait Implementations§
impl Freeze for BillableStatus
impl RefUnwindSafe for BillableStatus
impl Send for BillableStatus
impl Sync for BillableStatus
impl Unpin for BillableStatus
impl UnwindSafe for BillableStatus
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