pub struct FileSummary {
pub path: PathBuf,
pub n_messages: usize,
pub messages: Vec<MessageSummary>,
}Expand description
File-level summary
Fields§
§path: PathBuf§n_messages: usize§messages: Vec<MessageSummary>Trait Implementations§
Source§impl Clone for FileSummary
impl Clone for FileSummary
Source§fn clone(&self) -> FileSummary
fn clone(&self) -> FileSummary
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 moreAuto Trait Implementations§
impl Freeze for FileSummary
impl RefUnwindSafe for FileSummary
impl Send for FileSummary
impl Sync for FileSummary
impl Unpin for FileSummary
impl UnwindSafe for FileSummary
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