pub enum UpdateBrokerStorageError {
BadRequest(String),
Forbidden(String),
InternalServerError(String),
ServiceUnavailable(String),
Unauthorized(String),
}Expand description
Errors returned by UpdateBrokerStorage
Variants§
BadRequest(String)
<p>Returns information about an error.</p>
Forbidden(String)
<p>Returns information about an error.</p>
InternalServerError(String)
<p>Returns information about an error.</p>
<p>Returns information about an error.</p>
<p>Returns information about an error.</p>
Implementations§
Source§impl UpdateBrokerStorageError
impl UpdateBrokerStorageError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateBrokerStorageError>
Trait Implementations§
Source§impl Debug for UpdateBrokerStorageError
impl Debug for UpdateBrokerStorageError
Source§impl Display for UpdateBrokerStorageError
impl Display for UpdateBrokerStorageError
Source§impl Error for UpdateBrokerStorageError
impl Error for UpdateBrokerStorageError
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 UpdateBrokerStorageError
impl PartialEq for UpdateBrokerStorageError
impl StructuralPartialEq for UpdateBrokerStorageError
Auto Trait Implementations§
impl Freeze for UpdateBrokerStorageError
impl RefUnwindSafe for UpdateBrokerStorageError
impl Send for UpdateBrokerStorageError
impl Sync for UpdateBrokerStorageError
impl Unpin for UpdateBrokerStorageError
impl UnwindSafe for UpdateBrokerStorageError
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