pub struct RunContext {
pub run_id: RunId,
pub root_seed: Option<u64>,
pub variant_id: Option<VariantId>,
pub prediction_store: InMemoryPredictionStore,
pub aggregated_prediction_store: InMemoryAggregatedPredictionStore,
pub lineage: InMemoryLineageRecorder,
}Fields§
§run_id: RunId§root_seed: Option<u64>§variant_id: Option<VariantId>§prediction_store: InMemoryPredictionStore§aggregated_prediction_store: InMemoryAggregatedPredictionStore§lineage: InMemoryLineageRecorderImplementations§
Source§impl RunContext
impl RunContext
Trait Implementations§
Source§impl Clone for RunContext
impl Clone for RunContext
Source§fn clone(&self) -> RunContext
fn clone(&self) -> RunContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RunContext
impl RefUnwindSafe for RunContext
impl Send for RunContext
impl Sync for RunContext
impl Unpin for RunContext
impl UnsafeUnpin for RunContext
impl UnwindSafe for RunContext
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