pub struct StructReport {
pub struct_name: String,
pub source_file: Option<String>,
pub source_line: Option<u32>,
pub total_size: usize,
pub wasted_bytes: usize,
pub score: f64,
pub findings: Vec<Finding>,
}Fields§
§struct_name: String§source_file: Option<String>§source_line: Option<u32>§total_size: usize§wasted_bytes: usize§score: f64§findings: Vec<Finding>Trait Implementations§
Source§impl Debug for StructReport
impl Debug for StructReport
Auto Trait Implementations§
impl Freeze for StructReport
impl RefUnwindSafe for StructReport
impl Send for StructReport
impl Sync for StructReport
impl Unpin for StructReport
impl UnsafeUnpin for StructReport
impl UnwindSafe for StructReport
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