pub enum TagLogGroupError {
InvalidParameter(String),
ResourceNotFound(String),
}Expand description
Errors returned by TagLogGroup
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
ResourceNotFound(String)
The specified resource does not exist.
Implementations§
Source§impl TagLogGroupError
impl TagLogGroupError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<TagLogGroupError>
Trait Implementations§
Source§impl Debug for TagLogGroupError
impl Debug for TagLogGroupError
Source§impl Display for TagLogGroupError
impl Display for TagLogGroupError
Source§impl Error for TagLogGroupError
impl Error for TagLogGroupError
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 TagLogGroupError
impl PartialEq for TagLogGroupError
impl StructuralPartialEq for TagLogGroupError
Auto Trait Implementations§
impl Freeze for TagLogGroupError
impl RefUnwindSafe for TagLogGroupError
impl Send for TagLogGroupError
impl Sync for TagLogGroupError
impl Unpin for TagLogGroupError
impl UnwindSafe for TagLogGroupError
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