#[non_exhaustive]pub struct BatchUpdateVehicleInput {
pub vehicles: Option<Vec<UpdateVehicleRequestItem>>,
}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.vehicles: Option<Vec<UpdateVehicleRequestItem>>A list of information about the vehicles to update. For more information, see the API data type.
Implementations§
source§impl BatchUpdateVehicleInput
impl BatchUpdateVehicleInput
sourcepub fn vehicles(&self) -> &[UpdateVehicleRequestItem]
pub fn vehicles(&self) -> &[UpdateVehicleRequestItem]
A list of information about the vehicles to update. For more information, see the API data type.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .vehicles.is_none().
source§impl BatchUpdateVehicleInput
impl BatchUpdateVehicleInput
sourcepub fn builder() -> BatchUpdateVehicleInputBuilder
pub fn builder() -> BatchUpdateVehicleInputBuilder
Creates a new builder-style object to manufacture BatchUpdateVehicleInput.
Trait Implementations§
source§impl Clone for BatchUpdateVehicleInput
impl Clone for BatchUpdateVehicleInput
source§fn clone(&self) -> BatchUpdateVehicleInput
fn clone(&self) -> BatchUpdateVehicleInput
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 BatchUpdateVehicleInput
impl Debug for BatchUpdateVehicleInput
source§impl PartialEq for BatchUpdateVehicleInput
impl PartialEq for BatchUpdateVehicleInput
source§fn eq(&self, other: &BatchUpdateVehicleInput) -> bool
fn eq(&self, other: &BatchUpdateVehicleInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for BatchUpdateVehicleInput
Auto Trait Implementations§
impl RefUnwindSafe for BatchUpdateVehicleInput
impl Send for BatchUpdateVehicleInput
impl Sync for BatchUpdateVehicleInput
impl Unpin for BatchUpdateVehicleInput
impl UnwindSafe for BatchUpdateVehicleInput
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
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>
Creates a shared type from an unshared type.