#[non_exhaustive]pub struct ListStreamProcessorsOutput {
pub next_token: Option<String>,
pub stream_processors: Option<Vec<StreamProcessor>>,
/* 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.next_token: Option<String>
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of stream processors.
stream_processors: Option<Vec<StreamProcessor>>
List of stream processors that you have created.
Implementations§
source§impl ListStreamProcessorsOutput
impl ListStreamProcessorsOutput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of stream processors.
sourcepub fn stream_processors(&self) -> Option<&[StreamProcessor]>
pub fn stream_processors(&self) -> Option<&[StreamProcessor]>
List of stream processors that you have created.
source§impl ListStreamProcessorsOutput
impl ListStreamProcessorsOutput
sourcepub fn builder() -> ListStreamProcessorsOutputBuilder
pub fn builder() -> ListStreamProcessorsOutputBuilder
Creates a new builder-style object to manufacture ListStreamProcessorsOutput
.
Trait Implementations§
source§impl Clone for ListStreamProcessorsOutput
impl Clone for ListStreamProcessorsOutput
source§fn clone(&self) -> ListStreamProcessorsOutput
fn clone(&self) -> ListStreamProcessorsOutput
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 ListStreamProcessorsOutput
impl Debug for ListStreamProcessorsOutput
source§impl PartialEq<ListStreamProcessorsOutput> for ListStreamProcessorsOutput
impl PartialEq<ListStreamProcessorsOutput> for ListStreamProcessorsOutput
source§fn eq(&self, other: &ListStreamProcessorsOutput) -> bool
fn eq(&self, other: &ListStreamProcessorsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for ListStreamProcessorsOutput
impl RequestId for ListStreamProcessorsOutput
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 ListStreamProcessorsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListStreamProcessorsOutput
impl Send for ListStreamProcessorsOutput
impl Sync for ListStreamProcessorsOutput
impl Unpin for ListStreamProcessorsOutput
impl UnwindSafe for ListStreamProcessorsOutput
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