pub struct NestingReport {
pub max: usize,
pub avg: f64,
pub by_module: Vec<NestingRow>,
}Fields§
§max: usize§avg: f64§by_module: Vec<NestingRow>Trait Implementations§
Source§impl Clone for NestingReport
impl Clone for NestingReport
Source§fn clone(&self) -> NestingReport
fn clone(&self) -> NestingReport
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 NestingReport
impl Debug for NestingReport
Source§impl<'de> Deserialize<'de> for NestingReport
impl<'de> Deserialize<'de> for NestingReport
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 NestingReport
impl RefUnwindSafe for NestingReport
impl Send for NestingReport
impl Sync for NestingReport
impl Unpin for NestingReport
impl UnwindSafe for NestingReport
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