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