pub struct ResponseError {
pub code: Option<String>,
pub message: Option<String>,
}Expand description
Describes the error that's returned when you cannot delete a launch template version.
Fields§
§code: Option<String>The error code.
message: Option<String>The error message, if applicable.
Trait Implementations§
Source§impl Clone for ResponseError
impl Clone for ResponseError
Source§fn clone(&self) -> ResponseError
fn clone(&self) -> ResponseError
Returns a duplicate 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 ResponseError
impl Debug for ResponseError
Source§impl Default for ResponseError
impl Default for ResponseError
Source§fn default() -> ResponseError
fn default() -> ResponseError
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResponseError
impl PartialEq for ResponseError
impl StructuralPartialEq for ResponseError
Auto Trait Implementations§
impl Freeze for ResponseError
impl RefUnwindSafe for ResponseError
impl Send for ResponseError
impl Sync for ResponseError
impl Unpin for ResponseError
impl UnwindSafe for ResponseError
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