pub struct MergeUpdate {
pub pattern_id: String,
pub new_sessions: Vec<String>,
pub new_confidence: f64,
pub additional_times_seen: i64,
}Expand description
A merge update to apply to an existing pattern in the DB.
Fields§
§pattern_id: String§new_sessions: Vec<String>§new_confidence: f64§additional_times_seen: i64Auto Trait Implementations§
impl Freeze for MergeUpdate
impl RefUnwindSafe for MergeUpdate
impl Send for MergeUpdate
impl Sync for MergeUpdate
impl Unpin for MergeUpdate
impl UnsafeUnpin for MergeUpdate
impl UnwindSafe for MergeUpdate
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