pub enum GetFlowTemplateError {
InternalFailure(String),
InvalidRequest(String),
ResourceNotFound(String),
Throttling(String),
}Expand description
Errors returned by GetFlowTemplate
Variants§
Implementations§
Source§impl GetFlowTemplateError
impl GetFlowTemplateError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetFlowTemplateError>
Trait Implementations§
Source§impl Debug for GetFlowTemplateError
impl Debug for GetFlowTemplateError
Source§impl Display for GetFlowTemplateError
impl Display for GetFlowTemplateError
Source§impl Error for GetFlowTemplateError
impl Error for GetFlowTemplateError
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 GetFlowTemplateError
impl PartialEq for GetFlowTemplateError
Source§fn eq(&self, other: &GetFlowTemplateError) -> bool
fn eq(&self, other: &GetFlowTemplateError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetFlowTemplateError
Auto Trait Implementations§
impl Freeze for GetFlowTemplateError
impl RefUnwindSafe for GetFlowTemplateError
impl Send for GetFlowTemplateError
impl Sync for GetFlowTemplateError
impl Unpin for GetFlowTemplateError
impl UnsafeUnpin for GetFlowTemplateError
impl UnwindSafe for GetFlowTemplateError
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