pub enum UpdateMethodError {
BadRequest(String),
Conflict(String),
NotFound(String),
TooManyRequests(String),
Unauthorized(String),
}Expand description
Errors returned by UpdateMethod
Variants§
BadRequest(String)
The submitted request is not valid, for example, the input is incomplete or incorrect. See the accompanying error message for details.
Conflict(String)
The request configuration has conflicts. For details, see the accompanying error message.
NotFound(String)
The requested resource is not found. Make sure that the request URI is correct.
TooManyRequests(String)
The request has reached its throttling limit. Retry after the specified time period.
The request is denied because the caller has insufficient permissions.
Implementations§
Source§impl UpdateMethodError
impl UpdateMethodError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateMethodError>
Trait Implementations§
Source§impl Debug for UpdateMethodError
impl Debug for UpdateMethodError
Source§impl Display for UpdateMethodError
impl Display for UpdateMethodError
Source§impl Error for UpdateMethodError
impl Error for UpdateMethodError
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 UpdateMethodError
impl PartialEq for UpdateMethodError
impl StructuralPartialEq for UpdateMethodError
Auto Trait Implementations§
impl Freeze for UpdateMethodError
impl RefUnwindSafe for UpdateMethodError
impl Send for UpdateMethodError
impl Sync for UpdateMethodError
impl Unpin for UpdateMethodError
impl UnwindSafe for UpdateMethodError
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