pub struct ProjectUsageDaily {
pub avg_cpu_utilised: f32,
pub avg_mem_utilised: f32,
pub billable_vcpu_hours: f32,
pub build_minutes: u32,
pub isodate: NaiveDate,
pub max_cpu_reserved: f32,
pub max_mem_reserved: f32,
pub min_cpu_reserved: f32,
pub min_mem_reserved: f32,
pub reserved_vcpu_hours: f32,
pub runtime_minutes: u32,
}Fields§
§avg_cpu_utilised: f32§avg_mem_utilised: f32§billable_vcpu_hours: f32§build_minutes: u32§isodate: NaiveDate§max_cpu_reserved: f32§max_mem_reserved: f32§min_cpu_reserved: f32§min_mem_reserved: f32§reserved_vcpu_hours: f32§runtime_minutes: u32Trait Implementations§
Source§impl Clone for ProjectUsageDaily
impl Clone for ProjectUsageDaily
Source§fn clone(&self) -> ProjectUsageDaily
fn clone(&self) -> ProjectUsageDaily
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 ProjectUsageDaily
impl Debug for ProjectUsageDaily
Source§impl Default for ProjectUsageDaily
impl Default for ProjectUsageDaily
Source§fn default() -> ProjectUsageDaily
fn default() -> ProjectUsageDaily
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectUsageDaily
impl<'de> Deserialize<'de> for ProjectUsageDaily
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 ProjectUsageDaily
impl PartialEq for ProjectUsageDaily
Source§impl Serialize for ProjectUsageDaily
impl Serialize for ProjectUsageDaily
impl StructuralPartialEq for ProjectUsageDaily
Auto Trait Implementations§
impl Freeze for ProjectUsageDaily
impl RefUnwindSafe for ProjectUsageDaily
impl Send for ProjectUsageDaily
impl Sync for ProjectUsageDaily
impl Unpin for ProjectUsageDaily
impl UnwindSafe for ProjectUsageDaily
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