pub struct DescribeBatchPredictionsOutput {
pub next_token: Option<String>,
pub results: Option<Vec<BatchPrediction>>,
}
Expand description
Represents the output of a DescribeBatchPredictions
operation. The content is essentially a list of BatchPrediction
s.
Fields§
§next_token: Option<String>
The ID of the next page in the paginated results that indicates at least one more page follows.
results: Option<Vec<BatchPrediction>>
A list of BatchPrediction
objects that meet the search criteria.
Trait Implementations§
Source§impl Clone for DescribeBatchPredictionsOutput
impl Clone for DescribeBatchPredictionsOutput
Source§fn clone(&self) -> DescribeBatchPredictionsOutput
fn clone(&self) -> DescribeBatchPredictionsOutput
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 Default for DescribeBatchPredictionsOutput
impl Default for DescribeBatchPredictionsOutput
Source§fn default() -> DescribeBatchPredictionsOutput
fn default() -> DescribeBatchPredictionsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeBatchPredictionsOutput
impl<'de> Deserialize<'de> for DescribeBatchPredictionsOutput
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 DescribeBatchPredictionsOutput
impl PartialEq for DescribeBatchPredictionsOutput
Source§fn eq(&self, other: &DescribeBatchPredictionsOutput) -> bool
fn eq(&self, other: &DescribeBatchPredictionsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeBatchPredictionsOutput
Auto Trait Implementations§
impl Freeze for DescribeBatchPredictionsOutput
impl RefUnwindSafe for DescribeBatchPredictionsOutput
impl Send for DescribeBatchPredictionsOutput
impl Sync for DescribeBatchPredictionsOutput
impl Unpin for DescribeBatchPredictionsOutput
impl UnwindSafe for DescribeBatchPredictionsOutput
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