pub enum NotifyWhenUploadedError {
InternalServerError(String),
InvalidGatewayRequest(String),
}Expand description
Errors returned by NotifyWhenUploaded
Variants§
InternalServerError(String)
An internal server error has occurred during the request. For more information, see the error and message fields.
InvalidGatewayRequest(String)
An exception occurred because an invalid gateway request was issued to the service. For more information, see the error and message fields.
Implementations§
Source§impl NotifyWhenUploadedError
impl NotifyWhenUploadedError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<NotifyWhenUploadedError>
Trait Implementations§
Source§impl Debug for NotifyWhenUploadedError
impl Debug for NotifyWhenUploadedError
Source§impl Display for NotifyWhenUploadedError
impl Display for NotifyWhenUploadedError
Source§impl Error for NotifyWhenUploadedError
impl Error for NotifyWhenUploadedError
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 NotifyWhenUploadedError
impl PartialEq for NotifyWhenUploadedError
impl StructuralPartialEq for NotifyWhenUploadedError
Auto Trait Implementations§
impl Freeze for NotifyWhenUploadedError
impl RefUnwindSafe for NotifyWhenUploadedError
impl Send for NotifyWhenUploadedError
impl Sync for NotifyWhenUploadedError
impl Unpin for NotifyWhenUploadedError
impl UnwindSafe for NotifyWhenUploadedError
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