pub struct SystematicError {
pub term: String,
pub false_positive_count: usize,
pub document_ids: Vec<String>,
}Expand description
A term that consistently appears as a false positive across multiple documents.
Fields§
§term: String§false_positive_count: usize§document_ids: Vec<String>Trait Implementations§
Source§impl Clone for SystematicError
impl Clone for SystematicError
Source§fn clone(&self) -> SystematicError
fn clone(&self) -> SystematicError
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 SystematicError
impl Debug for SystematicError
Source§impl<'de> Deserialize<'de> for SystematicError
impl<'de> Deserialize<'de> for SystematicError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SystematicError
impl RefUnwindSafe for SystematicError
impl Send for SystematicError
impl Sync for SystematicError
impl Unpin for SystematicError
impl UnsafeUnpin for SystematicError
impl UnwindSafe for SystematicError
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