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