pub struct Item {
pub item: String,
pub score: f64,
pub yes: bool,
pub rules: Vec<Fired>,
}Expand description
One then: its score, whether that reaches the threshold, and the rules that gave it.
Fields§
§item: String§score: f64§yes: bool§rules: Vec<Fired>Trait Implementations§
impl StructuralPartialEq for Item
Auto Trait Implementations§
impl Freeze for Item
impl RefUnwindSafe for Item
impl Send for Item
impl Sync for Item
impl Unpin for Item
impl UnsafeUnpin for Item
impl UnwindSafe for Item
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