pub struct ListModelsOutput {
pub models: Vec<ModelSummary>,
pub next_token: Option<String>,
}
Fields§
§models: Vec<ModelSummary>
An array of ModelSummary
objects, each of which lists a model.
next_token: Option<String>
If the response is truncated, Amazon SageMaker returns this token. To retrieve the next set of models, use it in the subsequent request.
Trait Implementations§
Source§impl Clone for ListModelsOutput
impl Clone for ListModelsOutput
Source§fn clone(&self) -> ListModelsOutput
fn clone(&self) -> ListModelsOutput
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 ListModelsOutput
impl Debug for ListModelsOutput
Source§impl Default for ListModelsOutput
impl Default for ListModelsOutput
Source§fn default() -> ListModelsOutput
fn default() -> ListModelsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListModelsOutput
impl<'de> Deserialize<'de> for ListModelsOutput
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 ListModelsOutput
impl PartialEq for ListModelsOutput
impl StructuralPartialEq for ListModelsOutput
Auto Trait Implementations§
impl Freeze for ListModelsOutput
impl RefUnwindSafe for ListModelsOutput
impl Send for ListModelsOutput
impl Sync for ListModelsOutput
impl Unpin for ListModelsOutput
impl UnwindSafe for ListModelsOutput
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