Struct aws_sdk_iotfleetwise::operation::list_decoder_manifest_signals::ListDecoderManifestSignalsInput
source · #[non_exhaustive]pub struct ListDecoderManifestSignalsInput {
pub name: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}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.name: Option<String>The name of the decoder manifest to list information about.
next_token: Option<String>A pagination token for the next set of results.
If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.
max_results: Option<i32>The maximum number of items to return, between 1 and 100, inclusive.
Implementations§
source§impl ListDecoderManifestSignalsInput
impl ListDecoderManifestSignalsInput
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A pagination token for the next set of results.
If the results of a search are large, only a portion of the results are returned, and a nextToken pagination token is returned in the response. To retrieve the next set of results, reissue the search request and include the returned token. When all results have been returned, the response does not contain a pagination token value.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return, between 1 and 100, inclusive.
source§impl ListDecoderManifestSignalsInput
impl ListDecoderManifestSignalsInput
sourcepub fn builder() -> ListDecoderManifestSignalsInputBuilder
pub fn builder() -> ListDecoderManifestSignalsInputBuilder
Creates a new builder-style object to manufacture ListDecoderManifestSignalsInput.
Trait Implementations§
source§impl Clone for ListDecoderManifestSignalsInput
impl Clone for ListDecoderManifestSignalsInput
source§fn clone(&self) -> ListDecoderManifestSignalsInput
fn clone(&self) -> ListDecoderManifestSignalsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListDecoderManifestSignalsInput
impl PartialEq for ListDecoderManifestSignalsInput
source§fn eq(&self, other: &ListDecoderManifestSignalsInput) -> bool
fn eq(&self, other: &ListDecoderManifestSignalsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListDecoderManifestSignalsInput
Auto Trait Implementations§
impl Freeze for ListDecoderManifestSignalsInput
impl RefUnwindSafe for ListDecoderManifestSignalsInput
impl Send for ListDecoderManifestSignalsInput
impl Sync for ListDecoderManifestSignalsInput
impl Unpin for ListDecoderManifestSignalsInput
impl UnwindSafe for ListDecoderManifestSignalsInput
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