pub enum DescribeAcceleratorOfferingsError {
BadRequest(String),
InternalServer(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DescribeAcceleratorOfferings
Variants§
BadRequest(String)
Raised when a malformed input has been provided to the API.
InternalServer(String)
Raised when an unexpected error occurred during request processing.
ResourceNotFound(String)
Raised when the requested resource cannot be found.
Implementations§
Trait Implementations§
Source§impl Error for DescribeAcceleratorOfferingsError
impl Error for DescribeAcceleratorOfferingsError
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 DescribeAcceleratorOfferingsError
impl PartialEq for DescribeAcceleratorOfferingsError
Source§fn eq(&self, other: &DescribeAcceleratorOfferingsError) -> bool
fn eq(&self, other: &DescribeAcceleratorOfferingsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeAcceleratorOfferingsError
Auto Trait Implementations§
impl Freeze for DescribeAcceleratorOfferingsError
impl RefUnwindSafe for DescribeAcceleratorOfferingsError
impl Send for DescribeAcceleratorOfferingsError
impl Sync for DescribeAcceleratorOfferingsError
impl Unpin for DescribeAcceleratorOfferingsError
impl UnwindSafe for DescribeAcceleratorOfferingsError
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