pub enum CreateFlowTemplateError {
InternalFailure(String),
InvalidRequest(String),
LimitExceeded(String),
ResourceAlreadyExists(String),
Throttling(String),
}
Expand description
Errors returned by CreateFlowTemplate
Variants§
InternalFailure(String)
InvalidRequest(String)
LimitExceeded(String)
ResourceAlreadyExists(String)
Throttling(String)
Implementations§
Source§impl CreateFlowTemplateError
impl CreateFlowTemplateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateFlowTemplateError>
Trait Implementations§
Source§impl Debug for CreateFlowTemplateError
impl Debug for CreateFlowTemplateError
Source§impl Display for CreateFlowTemplateError
impl Display for CreateFlowTemplateError
Source§impl Error for CreateFlowTemplateError
impl Error for CreateFlowTemplateError
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 CreateFlowTemplateError
impl PartialEq for CreateFlowTemplateError
impl StructuralPartialEq for CreateFlowTemplateError
Auto Trait Implementations§
impl Freeze for CreateFlowTemplateError
impl RefUnwindSafe for CreateFlowTemplateError
impl Send for CreateFlowTemplateError
impl Sync for CreateFlowTemplateError
impl Unpin for CreateFlowTemplateError
impl UnwindSafe for CreateFlowTemplateError
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