pub struct ClicheResult {
pub instances: Vec<ClicheInstance>,
pub count: usize,
}Expand description
Result of cliché detection.
Fields§
§instances: Vec<ClicheInstance>All detected cliché instances
count: usizeTotal number of clichés found
Trait Implementations§
Source§impl Clone for ClicheResult
impl Clone for ClicheResult
Source§fn clone(&self) -> ClicheResult
fn clone(&self) -> ClicheResult
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 ClicheResult
impl Debug for ClicheResult
Source§impl PartialEq for ClicheResult
impl PartialEq for ClicheResult
impl StructuralPartialEq for ClicheResult
Auto Trait Implementations§
impl Freeze for ClicheResult
impl RefUnwindSafe for ClicheResult
impl Send for ClicheResult
impl Sync for ClicheResult
impl Unpin for ClicheResult
impl UnsafeUnpin for ClicheResult
impl UnwindSafe for ClicheResult
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