pub struct MonthlyAnalysis {
pub all_hours: f64,
pub all_hours_billable: f64,
pub all_hours_non_billable: f64,
pub all_hours_with_cost: f64,
pub billing_rate: f64,
pub average_rate: f64,
pub total_invoiced: f64,
pub hours_away: f64,
}Fields§
§all_hours: f64§all_hours_billable: f64§all_hours_non_billable: f64§all_hours_with_cost: f64§billing_rate: f64§average_rate: f64§total_invoiced: f64§hours_away: f64Trait Implementations§
Source§impl Debug for MonthlyAnalysis
impl Debug for MonthlyAnalysis
Source§impl<'de> Deserialize<'de> for MonthlyAnalysis
impl<'de> Deserialize<'de> for MonthlyAnalysis
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 MonthlyAnalysis
impl RefUnwindSafe for MonthlyAnalysis
impl Send for MonthlyAnalysis
impl Sync for MonthlyAnalysis
impl Unpin for MonthlyAnalysis
impl UnwindSafe for MonthlyAnalysis
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