pub struct TopFiveEntry {
pub rule_id: String,
pub count: usize,
pub example_file: String,
pub example_line: u32,
pub example_excerpt: String,
}Fields§
§rule_id: String§count: usize§example_file: String§example_line: u32§example_excerpt: StringTrait Implementations§
Source§impl Clone for TopFiveEntry
impl Clone for TopFiveEntry
Source§fn clone(&self) -> TopFiveEntry
fn clone(&self) -> TopFiveEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TopFiveEntry
impl RefUnwindSafe for TopFiveEntry
impl Send for TopFiveEntry
impl Sync for TopFiveEntry
impl Unpin for TopFiveEntry
impl UnsafeUnpin for TopFiveEntry
impl UnwindSafe for TopFiveEntry
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