pub enum UpdateReportGroupError {
InvalidInput(String),
ResourceNotFound(String),
}
Expand description
Errors returned by UpdateReportGroup
Variants§
InvalidInput(String)
The input value that was provided is not valid.
ResourceNotFound(String)
The specified AWS resource cannot be found.
Implementations§
Source§impl UpdateReportGroupError
impl UpdateReportGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateReportGroupError>
Trait Implementations§
Source§impl Debug for UpdateReportGroupError
impl Debug for UpdateReportGroupError
Source§impl Display for UpdateReportGroupError
impl Display for UpdateReportGroupError
Source§impl Error for UpdateReportGroupError
impl Error for UpdateReportGroupError
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 UpdateReportGroupError
impl PartialEq for UpdateReportGroupError
impl StructuralPartialEq for UpdateReportGroupError
Auto Trait Implementations§
impl Freeze for UpdateReportGroupError
impl RefUnwindSafe for UpdateReportGroupError
impl Send for UpdateReportGroupError
impl Sync for UpdateReportGroupError
impl Unpin for UpdateReportGroupError
impl UnwindSafe for UpdateReportGroupError
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