pub enum DescribeEventTrackerError {
InvalidInput(String),
ResourceNotFound(String),
}Expand description
Errors returned by DescribeEventTracker
Variants§
InvalidInput(String)
Provide a valid value for the field or parameter.
ResourceNotFound(String)
Could not find the specified resource.
Implementations§
Source§impl DescribeEventTrackerError
impl DescribeEventTrackerError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeEventTrackerError>
Trait Implementations§
Source§impl Debug for DescribeEventTrackerError
impl Debug for DescribeEventTrackerError
Source§impl Display for DescribeEventTrackerError
impl Display for DescribeEventTrackerError
Source§impl Error for DescribeEventTrackerError
impl Error for DescribeEventTrackerError
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 DescribeEventTrackerError
Auto Trait Implementations§
impl Freeze for DescribeEventTrackerError
impl RefUnwindSafe for DescribeEventTrackerError
impl Send for DescribeEventTrackerError
impl Sync for DescribeEventTrackerError
impl Unpin for DescribeEventTrackerError
impl UnwindSafe for DescribeEventTrackerError
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