#[non_exhaustive]pub struct ListVehiclesInput { /* private fields */ }Implementations§
source§impl ListVehiclesInput
impl ListVehiclesInput
sourcepub fn model_manifest_arn(&self) -> Option<&str>
pub fn model_manifest_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of a vehicle model (model manifest). You can use this optional parameter to list only the vehicles created from a certain vehicle model.
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 ListVehiclesInput
impl ListVehiclesInput
sourcepub fn builder() -> ListVehiclesInputBuilder
pub fn builder() -> ListVehiclesInputBuilder
Creates a new builder-style object to manufacture ListVehiclesInput.
source§impl ListVehiclesInput
impl ListVehiclesInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListVehicles, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation( &self, _config: &Config ) -> Result<Operation<ListVehicles, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<ListVehicles>
Trait Implementations§
source§impl Clone for ListVehiclesInput
impl Clone for ListVehiclesInput
source§fn clone(&self) -> ListVehiclesInput
fn clone(&self) -> ListVehiclesInput
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 ListVehiclesInput
impl Debug for ListVehiclesInput
source§impl PartialEq<ListVehiclesInput> for ListVehiclesInput
impl PartialEq<ListVehiclesInput> for ListVehiclesInput
source§fn eq(&self, other: &ListVehiclesInput) -> bool
fn eq(&self, other: &ListVehiclesInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListVehiclesInput
Auto Trait Implementations§
impl RefUnwindSafe for ListVehiclesInput
impl Send for ListVehiclesInput
impl Sync for ListVehiclesInput
impl Unpin for ListVehiclesInput
impl UnwindSafe for ListVehiclesInput
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