Struct aws_sdk_iot::operation::list_streams::ListStreamsOutput   
source · #[non_exhaustive]pub struct ListStreamsOutput {
    pub streams: Option<Vec<StreamSummary>>,
    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.streams: Option<Vec<StreamSummary>>A list of streams.
next_token: Option<String>A token used to get the next set of results.
Implementations§
source§impl ListStreamsOutput
 
impl ListStreamsOutput
sourcepub fn streams(&self) -> Option<&[StreamSummary]>
 
pub fn streams(&self) -> Option<&[StreamSummary]>
A list of streams.
sourcepub fn next_token(&self) -> Option<&str>
 
pub fn next_token(&self) -> Option<&str>
A token used to get the next set of results.
source§impl ListStreamsOutput
 
impl ListStreamsOutput
sourcepub fn builder() -> ListStreamsOutputBuilder
 
pub fn builder() -> ListStreamsOutputBuilder
Creates a new builder-style object to manufacture ListStreamsOutput.
Trait Implementations§
source§impl Clone for ListStreamsOutput
 
impl Clone for ListStreamsOutput
source§fn clone(&self) -> ListStreamsOutput
 
fn clone(&self) -> ListStreamsOutput
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 ListStreamsOutput
 
impl Debug for ListStreamsOutput
source§impl PartialEq<ListStreamsOutput> for ListStreamsOutput
 
impl PartialEq<ListStreamsOutput> for ListStreamsOutput
source§fn eq(&self, other: &ListStreamsOutput) -> bool
 
fn eq(&self, other: &ListStreamsOutput) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl RequestId for ListStreamsOutput
 
impl RequestId for ListStreamsOutput
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 ListStreamsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListStreamsOutput
impl Send for ListStreamsOutput
impl Sync for ListStreamsOutput
impl Unpin for ListStreamsOutput
impl UnwindSafe for ListStreamsOutput
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