pub struct BqmlTrainingRun {
pub iteration_results: Option<Vec<BqmlIterationResult>>,
pub start_time: Option<String>,
pub state: Option<String>,
pub training_options: Option<BqmlTrainingRunTrainingOptions>,
}
Fields
iteration_results: Option<Vec<BqmlIterationResult>>
[Output-only, Beta] List of each iteration results.
start_time: Option<String>
[Output-only, Beta] Training run start time in milliseconds since the epoch.
state: Option<String>
[Output-only, Beta] Different state applicable for a training run. IN PROGRESS: Training run is in progress. FAILED: Training run ended due to a non-retryable failure. SUCCEEDED: Training run successfully completed. CANCELLED: Training run cancelled by the user.
training_options: Option<BqmlTrainingRunTrainingOptions>
Trait Implementations
sourceimpl Clone for BqmlTrainingRun
impl Clone for BqmlTrainingRun
sourcefn clone(&self) -> BqmlTrainingRun
fn clone(&self) -> BqmlTrainingRun
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for BqmlTrainingRun
impl Debug for BqmlTrainingRun
sourceimpl Default for BqmlTrainingRun
impl Default for BqmlTrainingRun
sourcefn default() -> BqmlTrainingRun
fn default() -> BqmlTrainingRun
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for BqmlTrainingRun
impl<'de> Deserialize<'de> for BqmlTrainingRun
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for BqmlTrainingRun
impl Serialize for BqmlTrainingRun
Auto Trait Implementations
impl RefUnwindSafe for BqmlTrainingRun
impl Send for BqmlTrainingRun
impl Sync for BqmlTrainingRun
impl Unpin for BqmlTrainingRun
impl UnwindSafe for BqmlTrainingRun
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more