pub struct BillableRate {
pub end_date: Option<String>,
pub updated_at: Option<String>,
pub created_at: Option<String>,
pub id: Option<i64>,
pub start_date: Option<String>,
pub amount: Option<f64>,
}Fields§
§end_date: Option<String>The date the billable rate is no longer effective. This date is calculated by Harvest.
updated_at: Option<String>Date and time the billable rate was last updated.
created_at: Option<String>Date and time the billable rate was created.
id: Option<i64>Unique ID for the billable rate.
start_date: Option<String>The date the billable rate is effective.
amount: Option<f64>The amount of the billable rate.
Trait Implementations§
Source§impl Debug for BillableRate
impl Debug for BillableRate
Source§impl Default for BillableRate
impl Default for BillableRate
Source§fn default() -> BillableRate
fn default() -> BillableRate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillableRate
impl<'de> Deserialize<'de> for BillableRate
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 Display for BillableRate
impl Display for BillableRate
Auto Trait Implementations§
impl Freeze for BillableRate
impl RefUnwindSafe for BillableRate
impl Send for BillableRate
impl Sync for BillableRate
impl Unpin for BillableRate
impl UnwindSafe for BillableRate
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