pub struct VersionCost {
pub version_id: Option<i64>,
pub executions: i64,
pub avg_cost_usd: f64,
pub total_cost_usd: f64,
}Fields§
§version_id: Option<i64>§executions: i64§avg_cost_usd: f64§total_cost_usd: f64Trait Implementations§
Source§impl Clone for VersionCost
impl Clone for VersionCost
Source§fn clone(&self) -> VersionCost
fn clone(&self) -> VersionCost
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VersionCost
impl Debug for VersionCost
Source§impl<'de> Deserialize<'de> for VersionCost
impl<'de> Deserialize<'de> for VersionCost
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 VersionCost
impl RefUnwindSafe for VersionCost
impl Send for VersionCost
impl Sync for VersionCost
impl Unpin for VersionCost
impl UnsafeUnpin for VersionCost
impl UnwindSafe for VersionCost
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