pub struct CostRate {
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub start_date: Option<String>,
pub id: Option<i64>,
pub end_date: Option<String>,
pub amount: Option<f64>,
}Fields§
§created_at: Option<String>Date and time the cost rate was created.
updated_at: Option<String>Date and time the cost rate was last updated.
start_date: Option<String>The date the cost rate is effective.
id: Option<i64>Unique ID for the cost rate.
end_date: Option<String>The date the cost rate is no longer effective. This date is calculated by Harvest.
amount: Option<f64>The amount of the cost rate.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CostRate
impl<'de> Deserialize<'de> for CostRate
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
Auto Trait Implementations§
impl Freeze for CostRate
impl RefUnwindSafe for CostRate
impl Send for CostRate
impl Sync for CostRate
impl Unpin for CostRate
impl UnwindSafe for CostRate
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