pub struct GroupSummary {
pub group: String,
pub section_type: SectionType,
pub variant_count: usize,
pub file_count: usize,
pub state: String,
pub variants: Vec<String>,
}Expand description
Per-group summary across one or more files.
Fields§
§group: String§section_type: SectionType§variant_count: usize§file_count: usize§state: String§variants: Vec<String>Trait Implementations§
Source§impl Clone for GroupSummary
impl Clone for GroupSummary
Source§fn clone(&self) -> GroupSummary
fn clone(&self) -> GroupSummary
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 GroupSummary
impl Debug for GroupSummary
Auto Trait Implementations§
impl Freeze for GroupSummary
impl RefUnwindSafe for GroupSummary
impl Send for GroupSummary
impl Sync for GroupSummary
impl Unpin for GroupSummary
impl UnsafeUnpin for GroupSummary
impl UnwindSafe for GroupSummary
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