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