pub enum DescribeAttachmentError {
AttachmentIdNotFound(String),
DescribeAttachmentLimitExceeded(String),
InternalServerError(String),
}Expand description
Errors returned by DescribeAttachment
Variants§
AttachmentIdNotFound(String)
An attachment with the specified ID could not be found.
DescribeAttachmentLimitExceeded(String)
The limit for the number of DescribeAttachment requests in a short period of time has been exceeded.
InternalServerError(String)
An internal server error occurred.
Implementations§
Source§impl DescribeAttachmentError
impl DescribeAttachmentError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeAttachmentError>
Trait Implementations§
Source§impl Debug for DescribeAttachmentError
impl Debug for DescribeAttachmentError
Source§impl Display for DescribeAttachmentError
impl Display for DescribeAttachmentError
Source§impl Error for DescribeAttachmentError
impl Error for DescribeAttachmentError
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 DescribeAttachmentError
impl PartialEq for DescribeAttachmentError
impl StructuralPartialEq for DescribeAttachmentError
Auto Trait Implementations§
impl Freeze for DescribeAttachmentError
impl RefUnwindSafe for DescribeAttachmentError
impl Send for DescribeAttachmentError
impl Sync for DescribeAttachmentError
impl Unpin for DescribeAttachmentError
impl UnwindSafe for DescribeAttachmentError
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