#[non_exhaustive]pub struct CreateEvaluationInput {
pub evaluation_id: Option<String>,
pub evaluation_name: Option<String>,
pub ml_model_id: Option<String>,
pub evaluation_data_source_id: Option<String>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.evaluation_id: Option<String>A user-supplied ID that uniquely identifies the Evaluation.
evaluation_name: Option<String>A user-supplied name or description of the Evaluation.
ml_model_id: Option<String>The ID of the MLModel to evaluate.
The schema used in creating the MLModel must match the schema of the DataSource used in the Evaluation.
evaluation_data_source_id: Option<String>The ID of the DataSource for the evaluation. The schema of the DataSource must match the schema used to create the MLModel.
Implementations§
source§impl CreateEvaluationInput
impl CreateEvaluationInput
sourcepub fn evaluation_id(&self) -> Option<&str>
pub fn evaluation_id(&self) -> Option<&str>
A user-supplied ID that uniquely identifies the Evaluation.
sourcepub fn evaluation_name(&self) -> Option<&str>
pub fn evaluation_name(&self) -> Option<&str>
A user-supplied name or description of the Evaluation.
sourcepub fn ml_model_id(&self) -> Option<&str>
pub fn ml_model_id(&self) -> Option<&str>
The ID of the MLModel to evaluate.
The schema used in creating the MLModel must match the schema of the DataSource used in the Evaluation.
sourcepub fn evaluation_data_source_id(&self) -> Option<&str>
pub fn evaluation_data_source_id(&self) -> Option<&str>
The ID of the DataSource for the evaluation. The schema of the DataSource must match the schema used to create the MLModel.
source§impl CreateEvaluationInput
impl CreateEvaluationInput
sourcepub fn builder() -> CreateEvaluationInputBuilder
pub fn builder() -> CreateEvaluationInputBuilder
Creates a new builder-style object to manufacture CreateEvaluationInput.
Trait Implementations§
source§impl Clone for CreateEvaluationInput
impl Clone for CreateEvaluationInput
source§fn clone(&self) -> CreateEvaluationInput
fn clone(&self) -> CreateEvaluationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateEvaluationInput
impl Debug for CreateEvaluationInput
source§impl PartialEq for CreateEvaluationInput
impl PartialEq for CreateEvaluationInput
source§fn eq(&self, other: &CreateEvaluationInput) -> bool
fn eq(&self, other: &CreateEvaluationInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateEvaluationInput
Auto Trait Implementations§
impl Freeze for CreateEvaluationInput
impl RefUnwindSafe for CreateEvaluationInput
impl Send for CreateEvaluationInput
impl Sync for CreateEvaluationInput
impl Unpin for CreateEvaluationInput
impl UnwindSafe for CreateEvaluationInput
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
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>
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>
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 more