#[non_exhaustive]pub struct TabularResolvedAttributes {
pub problem_type: Option<ProblemType>,
}
Expand description
The resolved attributes specific to the tabular problem type.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.problem_type: Option<ProblemType>
The type of supervised learning problem available for the model candidates of the AutoML job V2 (Binary Classification, Multiclass Classification, Regression). For more information, see Amazon SageMaker Autopilot problem types.
Implementations§
source§impl TabularResolvedAttributes
impl TabularResolvedAttributes
sourcepub fn problem_type(&self) -> Option<&ProblemType>
pub fn problem_type(&self) -> Option<&ProblemType>
The type of supervised learning problem available for the model candidates of the AutoML job V2 (Binary Classification, Multiclass Classification, Regression). For more information, see Amazon SageMaker Autopilot problem types.
source§impl TabularResolvedAttributes
impl TabularResolvedAttributes
sourcepub fn builder() -> TabularResolvedAttributesBuilder
pub fn builder() -> TabularResolvedAttributesBuilder
Creates a new builder-style object to manufacture TabularResolvedAttributes
.
Trait Implementations§
source§impl Clone for TabularResolvedAttributes
impl Clone for TabularResolvedAttributes
source§fn clone(&self) -> TabularResolvedAttributes
fn clone(&self) -> TabularResolvedAttributes
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 Debug for TabularResolvedAttributes
impl Debug for TabularResolvedAttributes
source§impl PartialEq for TabularResolvedAttributes
impl PartialEq for TabularResolvedAttributes
source§fn eq(&self, other: &TabularResolvedAttributes) -> bool
fn eq(&self, other: &TabularResolvedAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TabularResolvedAttributes
Auto Trait Implementations§
impl RefUnwindSafe for TabularResolvedAttributes
impl Send for TabularResolvedAttributes
impl Sync for TabularResolvedAttributes
impl Unpin for TabularResolvedAttributes
impl UnwindSafe for TabularResolvedAttributes
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> 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>
Creates a shared type from an unshared type.