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