pub struct UpdateMLModelOutput {
pub ml_model_id: Option<String>,
}
Expand description
Represents the output of an UpdateMLModel
operation.
You can see the updated content by using the GetMLModel
operation.
Fields§
§ml_model_id: Option<String>
The ID assigned to the MLModel
during creation. This value should be identical to the value of the MLModelID
in the request.
Trait Implementations§
Source§impl Clone for UpdateMLModelOutput
impl Clone for UpdateMLModelOutput
Source§fn clone(&self) -> UpdateMLModelOutput
fn clone(&self) -> UpdateMLModelOutput
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 UpdateMLModelOutput
impl Debug for UpdateMLModelOutput
Source§impl Default for UpdateMLModelOutput
impl Default for UpdateMLModelOutput
Source§fn default() -> UpdateMLModelOutput
fn default() -> UpdateMLModelOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateMLModelOutput
impl<'de> Deserialize<'de> for UpdateMLModelOutput
Source§fn 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
Source§impl PartialEq for UpdateMLModelOutput
impl PartialEq for UpdateMLModelOutput
impl StructuralPartialEq for UpdateMLModelOutput
Auto Trait Implementations§
impl Freeze for UpdateMLModelOutput
impl RefUnwindSafe for UpdateMLModelOutput
impl Send for UpdateMLModelOutput
impl Sync for UpdateMLModelOutput
impl Unpin for UpdateMLModelOutput
impl UnwindSafe for UpdateMLModelOutput
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