pub enum StartElasticsearchServiceSoftwareUpdateError {
Base(String),
Internal(String),
ResourceNotFound(String),
}Expand description
Errors returned by StartElasticsearchServiceSoftwareUpdate
Variants§
Base(String)
An error occurred while processing the request.
Internal(String)
The request processing has failed because of an unknown error, exception or failure (the failure is internal to the service) . Gives http status code of 500.
ResourceNotFound(String)
An exception for accessing or deleting a resource that does not exist. Gives http status code of 400.
Implementations§
Trait Implementations§
Source§impl Error for StartElasticsearchServiceSoftwareUpdateError
impl Error for StartElasticsearchServiceSoftwareUpdateError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for StartElasticsearchServiceSoftwareUpdateError
impl PartialEq for StartElasticsearchServiceSoftwareUpdateError
Source§fn eq(&self, other: &StartElasticsearchServiceSoftwareUpdateError) -> bool
fn eq(&self, other: &StartElasticsearchServiceSoftwareUpdateError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartElasticsearchServiceSoftwareUpdateError
Auto Trait Implementations§
impl Freeze for StartElasticsearchServiceSoftwareUpdateError
impl RefUnwindSafe for StartElasticsearchServiceSoftwareUpdateError
impl Send for StartElasticsearchServiceSoftwareUpdateError
impl Sync for StartElasticsearchServiceSoftwareUpdateError
impl Unpin for StartElasticsearchServiceSoftwareUpdateError
impl UnwindSafe for StartElasticsearchServiceSoftwareUpdateError
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