pub struct CollectivePatternEntry {
pub unit_id: u64,
pub usage_count: u64,
pub confidence: f32,
}Expand description
A single collective pattern match.
Fields§
§unit_id: u64The unit ID.
usage_count: u64Collective usage count.
confidence: f32Confidence/relevance.
Trait Implementations§
Source§impl Clone for CollectivePatternEntry
impl Clone for CollectivePatternEntry
Source§fn clone(&self) -> CollectivePatternEntry
fn clone(&self) -> CollectivePatternEntry
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 moreAuto Trait Implementations§
impl Freeze for CollectivePatternEntry
impl RefUnwindSafe for CollectivePatternEntry
impl Send for CollectivePatternEntry
impl Sync for CollectivePatternEntry
impl Unpin for CollectivePatternEntry
impl UnsafeUnpin for CollectivePatternEntry
impl UnwindSafe for CollectivePatternEntry
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