#[non_exhaustive]pub struct ListHubContentsOutput {
pub hub_content_summaries: Option<Vec<HubContentInfo>>,
pub next_token: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.hub_content_summaries: Option<Vec<HubContentInfo>>
The summaries of the listed hub content.
next_token: Option<String>
If the response is truncated, SageMaker returns this token. To retrieve the next set of hub content, use it in the subsequent request.
Implementations§
source§impl ListHubContentsOutput
impl ListHubContentsOutput
sourcepub fn hub_content_summaries(&self) -> Option<&[HubContentInfo]>
pub fn hub_content_summaries(&self) -> Option<&[HubContentInfo]>
The summaries of the listed hub content.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response is truncated, SageMaker returns this token. To retrieve the next set of hub content, use it in the subsequent request.
source§impl ListHubContentsOutput
impl ListHubContentsOutput
sourcepub fn builder() -> ListHubContentsOutputBuilder
pub fn builder() -> ListHubContentsOutputBuilder
Creates a new builder-style object to manufacture ListHubContentsOutput
.
Trait Implementations§
source§impl Clone for ListHubContentsOutput
impl Clone for ListHubContentsOutput
source§fn clone(&self) -> ListHubContentsOutput
fn clone(&self) -> ListHubContentsOutput
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 ListHubContentsOutput
impl Debug for ListHubContentsOutput
source§impl PartialEq<ListHubContentsOutput> for ListHubContentsOutput
impl PartialEq<ListHubContentsOutput> for ListHubContentsOutput
source§fn eq(&self, other: &ListHubContentsOutput) -> bool
fn eq(&self, other: &ListHubContentsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListHubContentsOutput
impl RequestId for ListHubContentsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for ListHubContentsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListHubContentsOutput
impl Send for ListHubContentsOutput
impl Sync for ListHubContentsOutput
impl Unpin for ListHubContentsOutput
impl UnwindSafe for ListHubContentsOutput
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