pub enum DeleteUsageLimitError {
UnsupportedOperationFault(String),
UsageLimitNotFoundFault(String),
}
Expand description
Errors returned by DeleteUsageLimit
Variants§
UnsupportedOperationFault(String)
The requested operation isn't supported.
UsageLimitNotFoundFault(String)
The usage limit identifier can't be found.
Implementations§
Source§impl DeleteUsageLimitError
impl DeleteUsageLimitError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteUsageLimitError>
Trait Implementations§
Source§impl Debug for DeleteUsageLimitError
impl Debug for DeleteUsageLimitError
Source§impl Display for DeleteUsageLimitError
impl Display for DeleteUsageLimitError
Source§impl Error for DeleteUsageLimitError
impl Error for DeleteUsageLimitError
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 DeleteUsageLimitError
impl PartialEq for DeleteUsageLimitError
impl StructuralPartialEq for DeleteUsageLimitError
Auto Trait Implementations§
impl Freeze for DeleteUsageLimitError
impl RefUnwindSafe for DeleteUsageLimitError
impl Send for DeleteUsageLimitError
impl Sync for DeleteUsageLimitError
impl Unpin for DeleteUsageLimitError
impl UnwindSafe for DeleteUsageLimitError
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