pub enum CreateReceiptFilterError {
AlreadyExists(String),
LimitExceeded(String),
}
Expand description
Errors returned by CreateReceiptFilter
Variants§
AlreadyExists(String)
Indicates that a resource could not be created because of a naming conflict.
LimitExceeded(String)
Indicates that a resource could not be created because of service limits. For a list of Amazon SES limits, see the Amazon SES Developer Guide.
Implementations§
Source§impl CreateReceiptFilterError
impl CreateReceiptFilterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateReceiptFilterError>
Trait Implementations§
Source§impl Debug for CreateReceiptFilterError
impl Debug for CreateReceiptFilterError
Source§impl Display for CreateReceiptFilterError
impl Display for CreateReceiptFilterError
Source§impl Error for CreateReceiptFilterError
impl Error for CreateReceiptFilterError
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 CreateReceiptFilterError
impl PartialEq for CreateReceiptFilterError
impl StructuralPartialEq for CreateReceiptFilterError
Auto Trait Implementations§
impl Freeze for CreateReceiptFilterError
impl RefUnwindSafe for CreateReceiptFilterError
impl Send for CreateReceiptFilterError
impl Sync for CreateReceiptFilterError
impl Unpin for CreateReceiptFilterError
impl UnwindSafe for CreateReceiptFilterError
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