pub struct PredictInput {
pub ml_model_id: String,
pub predict_endpoint: String,
pub record: HashMap<String, String>,
}
Fields§
§ml_model_id: String
A unique identifier of the MLModel
.
predict_endpoint: String
§record: HashMap<String, String>
Trait Implementations§
Source§impl Clone for PredictInput
impl Clone for PredictInput
Source§fn clone(&self) -> PredictInput
fn clone(&self) -> PredictInput
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 PredictInput
impl Debug for PredictInput
Source§impl Default for PredictInput
impl Default for PredictInput
Source§fn default() -> PredictInput
fn default() -> PredictInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for PredictInput
impl PartialEq for PredictInput
Source§impl Serialize for PredictInput
impl Serialize for PredictInput
impl StructuralPartialEq for PredictInput
Auto Trait Implementations§
impl Freeze for PredictInput
impl RefUnwindSafe for PredictInput
impl Send for PredictInput
impl Sync for PredictInput
impl Unpin for PredictInput
impl UnwindSafe for PredictInput
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