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