[][src]Enum kurobako::multi_exam::MultiExamEvaluator

pub enum MultiExamEvaluator {
    NotStarted {
        exam: MultiExamRecipe,
        vars: Vec<ParamDomain>,
        lcm: u64,
        baselines: Vec<Vec<StudyRecord>>,
    },
    Running {
        runners: BinaryHeap<Runner>,
        metric: MetricRecipe,
        baselines: Vec<Vec<StudyRecord>>,
    },
}

Variants

NotStarted

Fields of NotStarted

exam: MultiExamRecipevars: Vec<ParamDomain>lcm: u64baselines: Vec<Vec<StudyRecord>>
Running

Fields of Running

runners: BinaryHeap<Runner>metric: MetricRecipebaselines: Vec<Vec<StudyRecord>>

Trait Implementations

impl Debug for MultiExamEvaluator[src]

impl Evaluate for MultiExamEvaluator[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,