pub struct DescribeMLModelsOutput {
pub next_token: Option<String>,
pub results: Option<Vec<MLModel>>,
}
Expand description
Represents the output of a DescribeMLModels
operation. The content is essentially a list of MLModel
.
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<MLModel>>
A list of MLModel
that meet the search criteria.
Trait Implementations§
Source§impl Clone for DescribeMLModelsOutput
impl Clone for DescribeMLModelsOutput
Source§fn clone(&self) -> DescribeMLModelsOutput
fn clone(&self) -> DescribeMLModelsOutput
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 DescribeMLModelsOutput
impl Debug for DescribeMLModelsOutput
Source§impl Default for DescribeMLModelsOutput
impl Default for DescribeMLModelsOutput
Source§fn default() -> DescribeMLModelsOutput
fn default() -> DescribeMLModelsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeMLModelsOutput
impl<'de> Deserialize<'de> for DescribeMLModelsOutput
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 DescribeMLModelsOutput
impl PartialEq for DescribeMLModelsOutput
impl StructuralPartialEq for DescribeMLModelsOutput
Auto Trait Implementations§
impl Freeze for DescribeMLModelsOutput
impl RefUnwindSafe for DescribeMLModelsOutput
impl Send for DescribeMLModelsOutput
impl Sync for DescribeMLModelsOutput
impl Unpin for DescribeMLModelsOutput
impl UnwindSafe for DescribeMLModelsOutput
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