pub enum CreateTemplateError {
AlreadyExists(String),
InvalidTemplate(String),
LimitExceeded(String),
}Expand description
Errors returned by CreateTemplate
Variants§
AlreadyExists(String)
Indicates that a resource could not be created because of a naming conflict.
InvalidTemplate(String)
Indicates that the template that you specified could not be rendered. This issue may occur when a template refers to a partial that does not exist.
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 CreateTemplateError
impl CreateTemplateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateTemplateError>
Trait Implementations§
Source§impl Debug for CreateTemplateError
impl Debug for CreateTemplateError
Source§impl Display for CreateTemplateError
impl Display for CreateTemplateError
Source§impl Error for CreateTemplateError
impl Error for CreateTemplateError
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 CreateTemplateError
impl PartialEq for CreateTemplateError
impl StructuralPartialEq for CreateTemplateError
Auto Trait Implementations§
impl Freeze for CreateTemplateError
impl RefUnwindSafe for CreateTemplateError
impl Send for CreateTemplateError
impl Sync for CreateTemplateError
impl Unpin for CreateTemplateError
impl UnwindSafe for CreateTemplateError
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