pub struct RateReport {
pub total: RateRow,
pub by_lang: Vec<RateRow>,
pub by_module: Vec<RateRow>,
}Fields§
§total: RateRow§by_lang: Vec<RateRow>§by_module: Vec<RateRow>Trait Implementations§
Source§impl Clone for RateReport
impl Clone for RateReport
Source§fn clone(&self) -> RateReport
fn clone(&self) -> RateReport
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 RateReport
impl Debug for RateReport
Source§impl<'de> Deserialize<'de> for RateReport
impl<'de> Deserialize<'de> for RateReport
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 RateReport
impl RefUnwindSafe for RateReport
impl Send for RateReport
impl Sync for RateReport
impl Unpin for RateReport
impl UnwindSafe for RateReport
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