pub struct BillingRound {
pub probe: String,
pub billed_input: u32,
pub honest_input: u32,
pub billed_output: u32,
pub ratio: f64,
}Fields§
§probe: String§billed_input: u32§honest_input: u32§billed_output: u32§ratio: f64Trait Implementations§
Source§impl Clone for BillingRound
impl Clone for BillingRound
Source§fn clone(&self) -> BillingRound
fn clone(&self) -> BillingRound
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 BillingRound
impl Debug for BillingRound
Source§impl<'de> Deserialize<'de> for BillingRound
impl<'de> Deserialize<'de> for BillingRound
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 BillingRound
impl RefUnwindSafe for BillingRound
impl Send for BillingRound
impl Sync for BillingRound
impl Unpin for BillingRound
impl UnsafeUnpin for BillingRound
impl UnwindSafe for BillingRound
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