pub struct CreateEvaluationInput {
pub evaluation_data_source_id: String,
pub evaluation_id: String,
pub evaluation_name: Option<String>,
pub ml_model_id: String,
}
Fields§
§evaluation_data_source_id: String
The ID of the DataSource
for the evaluation. The schema of the DataSource
must match the schema used to create the MLModel
.
evaluation_id: 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: 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
.
Trait Implementations§
Source§impl Clone for CreateEvaluationInput
impl Clone for CreateEvaluationInput
Source§fn clone(&self) -> CreateEvaluationInput
fn clone(&self) -> CreateEvaluationInput
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 CreateEvaluationInput
impl Debug for CreateEvaluationInput
Source§impl Default for CreateEvaluationInput
impl Default for CreateEvaluationInput
Source§fn default() -> CreateEvaluationInput
fn default() -> CreateEvaluationInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateEvaluationInput
impl PartialEq for CreateEvaluationInput
Source§impl Serialize for CreateEvaluationInput
impl Serialize for CreateEvaluationInput
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
Mutably borrows from an owned value. Read more