#[non_exhaustive]pub struct CreateVehicleResponseItem {
pub vehicle_name: Option<String>,
pub arn: Option<String>,
pub thing_arn: Option<String>,
}
Expand description
Information about a created vehicle.
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.vehicle_name: Option<String>
The unique ID of the vehicle to create.
arn: Option<String>
The ARN of the created vehicle.
thing_arn: Option<String>
The ARN of a created or validated Amazon Web Services IoT thing.
Implementations§
source§impl CreateVehicleResponseItem
impl CreateVehicleResponseItem
sourcepub fn builder() -> CreateVehicleResponseItemBuilder
pub fn builder() -> CreateVehicleResponseItemBuilder
Creates a new builder-style object to manufacture CreateVehicleResponseItem
.
Trait Implementations§
source§impl Clone for CreateVehicleResponseItem
impl Clone for CreateVehicleResponseItem
source§fn clone(&self) -> CreateVehicleResponseItem
fn clone(&self) -> CreateVehicleResponseItem
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 CreateVehicleResponseItem
impl Debug for CreateVehicleResponseItem
source§impl PartialEq<CreateVehicleResponseItem> for CreateVehicleResponseItem
impl PartialEq<CreateVehicleResponseItem> for CreateVehicleResponseItem
source§fn eq(&self, other: &CreateVehicleResponseItem) -> bool
fn eq(&self, other: &CreateVehicleResponseItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateVehicleResponseItem
Auto Trait Implementations§
impl RefUnwindSafe for CreateVehicleResponseItem
impl Send for CreateVehicleResponseItem
impl Sync for CreateVehicleResponseItem
impl Unpin for CreateVehicleResponseItem
impl UnwindSafe for CreateVehicleResponseItem
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