#[non_exhaustive]pub struct InferenceExperimentScheduleBuilder { /* private fields */ }
Expand description
A builder for InferenceExperimentSchedule
.
Implementations§
source§impl InferenceExperimentScheduleBuilder
impl InferenceExperimentScheduleBuilder
sourcepub fn start_time(self, input: DateTime) -> Self
pub fn start_time(self, input: DateTime) -> Self
The timestamp at which the inference experiment started or will start.
sourcepub fn set_start_time(self, input: Option<DateTime>) -> Self
pub fn set_start_time(self, input: Option<DateTime>) -> Self
The timestamp at which the inference experiment started or will start.
sourcepub fn get_start_time(&self) -> &Option<DateTime>
pub fn get_start_time(&self) -> &Option<DateTime>
The timestamp at which the inference experiment started or will start.
sourcepub fn end_time(self, input: DateTime) -> Self
pub fn end_time(self, input: DateTime) -> Self
The timestamp at which the inference experiment ended or will end.
sourcepub fn set_end_time(self, input: Option<DateTime>) -> Self
pub fn set_end_time(self, input: Option<DateTime>) -> Self
The timestamp at which the inference experiment ended or will end.
sourcepub fn get_end_time(&self) -> &Option<DateTime>
pub fn get_end_time(&self) -> &Option<DateTime>
The timestamp at which the inference experiment ended or will end.
sourcepub fn build(self) -> InferenceExperimentSchedule
pub fn build(self) -> InferenceExperimentSchedule
Consumes the builder and constructs a InferenceExperimentSchedule
.
Trait Implementations§
source§impl Clone for InferenceExperimentScheduleBuilder
impl Clone for InferenceExperimentScheduleBuilder
source§fn clone(&self) -> InferenceExperimentScheduleBuilder
fn clone(&self) -> InferenceExperimentScheduleBuilder
Returns a copy 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 moresource§impl Default for InferenceExperimentScheduleBuilder
impl Default for InferenceExperimentScheduleBuilder
source§fn default() -> InferenceExperimentScheduleBuilder
fn default() -> InferenceExperimentScheduleBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for InferenceExperimentScheduleBuilder
impl PartialEq for InferenceExperimentScheduleBuilder
source§fn eq(&self, other: &InferenceExperimentScheduleBuilder) -> bool
fn eq(&self, other: &InferenceExperimentScheduleBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InferenceExperimentScheduleBuilder
Auto Trait Implementations§
impl Freeze for InferenceExperimentScheduleBuilder
impl RefUnwindSafe for InferenceExperimentScheduleBuilder
impl Send for InferenceExperimentScheduleBuilder
impl Sync for InferenceExperimentScheduleBuilder
impl Unpin for InferenceExperimentScheduleBuilder
impl UnwindSafe for InferenceExperimentScheduleBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.