pub struct SessionHistory {
pub rounds: usize,
pub all_scored: Vec<ScoredPattern<String, String>>,
pub accepted: Vec<ScoredPattern<String, String>>,
}Expand description
The result of a completed discovery session.
Fields§
§rounds: usizeHow many rounds actually ran.
all_scored: Vec<ScoredPattern<String, String>>All candidates that were evaluated, in order.
accepted: Vec<ScoredPattern<String, String>>Candidates that passed the filter.
Trait Implementations§
Source§impl Clone for SessionHistory
impl Clone for SessionHistory
Source§fn clone(&self) -> SessionHistory
fn clone(&self) -> SessionHistory
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 SessionHistory
impl RefUnwindSafe for SessionHistory
impl Send for SessionHistory
impl Sync for SessionHistory
impl Unpin for SessionHistory
impl UnsafeUnpin for SessionHistory
impl UnwindSafe for SessionHistory
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