#[non_exhaustive]pub struct ListStreamsOutput {
pub streams: Option<Vec<Stream>>,
pub last_evaluated_stream_arn: Option<String>,
/* private fields */
}
Expand description
Represents the output of a ListStreams
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.streams: Option<Vec<Stream>>
A list of stream descriptors associated with the current account and endpoint.
last_evaluated_stream_arn: Option<String>
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the "last page" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
Implementations§
source§impl ListStreamsOutput
impl ListStreamsOutput
sourcepub fn streams(&self) -> &[Stream]
pub fn streams(&self) -> &[Stream]
A list of stream descriptors associated with the current account and endpoint.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .streams.is_none()
.
sourcepub fn last_evaluated_stream_arn(&self) -> Option<&str>
pub fn last_evaluated_stream_arn(&self) -> Option<&str>
The stream ARN of the item where the operation stopped, inclusive of the previous result set. Use this value to start a new operation, excluding this value in the new request.
If LastEvaluatedStreamArn
is empty, then the "last page" of results has been processed and there is no more data to be retrieved.
If LastEvaluatedStreamArn
is not empty, it does not necessarily mean that there is more data in the result set. The only way to know when you have reached the end of the result set is when LastEvaluatedStreamArn
is empty.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListStreamsOutput
impl Debug for ListStreamsOutput
source§impl PartialEq for ListStreamsOutput
impl PartialEq for ListStreamsOutput
source§impl RequestId for ListStreamsOutput
impl RequestId for ListStreamsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for ListStreamsOutput
Auto Trait Implementations§
impl Freeze for ListStreamsOutput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more