pub struct ProjectUsageVCPU {
pub reserved_hours: f32,
pub billable_hours: f32,
}Expand description
VCPU subquery for the ProjectUsageResponse struct
Fields§
§reserved_hours: f32Used reserved VCPU hours for a project.
billable_hours: f32Used VCPU hours beyond the included reserved VCPU hours for a project.
Trait Implementations§
Source§impl Clone for ProjectUsageVCPU
impl Clone for ProjectUsageVCPU
Source§fn clone(&self) -> ProjectUsageVCPU
fn clone(&self) -> ProjectUsageVCPU
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 ProjectUsageVCPU
impl Debug for ProjectUsageVCPU
Source§impl Default for ProjectUsageVCPU
impl Default for ProjectUsageVCPU
Source§fn default() -> ProjectUsageVCPU
fn default() -> ProjectUsageVCPU
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectUsageVCPU
impl<'de> Deserialize<'de> for ProjectUsageVCPU
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 ProjectUsageVCPU
impl PartialEq for ProjectUsageVCPU
Source§impl Serialize for ProjectUsageVCPU
impl Serialize for ProjectUsageVCPU
impl StructuralPartialEq for ProjectUsageVCPU
Auto Trait Implementations§
impl Freeze for ProjectUsageVCPU
impl RefUnwindSafe for ProjectUsageVCPU
impl Send for ProjectUsageVCPU
impl Sync for ProjectUsageVCPU
impl Unpin for ProjectUsageVCPU
impl UnwindSafe for ProjectUsageVCPU
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