Struct aws_sdk_iotfleetwise::types::CreateVehicleError
source · #[non_exhaustive]pub struct CreateVehicleError {
pub vehicle_name: Option<String>,
pub code: Option<String>,
pub message: Option<String>,
}
Expand description
An HTTP error resulting from creating a 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 ID of the vehicle with the error.
code: Option<String>
An HTTP error code.
message: Option<String>
A description of the HTTP error.
Implementations§
source§impl CreateVehicleError
impl CreateVehicleError
sourcepub fn builder() -> CreateVehicleErrorBuilder
pub fn builder() -> CreateVehicleErrorBuilder
Creates a new builder-style object to manufacture CreateVehicleError
.
Trait Implementations§
source§impl Clone for CreateVehicleError
impl Clone for CreateVehicleError
source§fn clone(&self) -> CreateVehicleError
fn clone(&self) -> CreateVehicleError
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 CreateVehicleError
impl Debug for CreateVehicleError
source§impl PartialEq<CreateVehicleError> for CreateVehicleError
impl PartialEq<CreateVehicleError> for CreateVehicleError
source§fn eq(&self, other: &CreateVehicleError) -> bool
fn eq(&self, other: &CreateVehicleError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateVehicleError
Auto Trait Implementations§
impl RefUnwindSafe for CreateVehicleError
impl Send for CreateVehicleError
impl Sync for CreateVehicleError
impl Unpin for CreateVehicleError
impl UnwindSafe for CreateVehicleError
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