pub enum DescribeActivityTypeError {
OperationNotPermittedFault(String),
UnknownResourceFault(String),
}
Expand description
Errors returned by DescribeActivityType
Variants§
OperationNotPermittedFault(String)
Returned when the caller doesn't have sufficient permissions to invoke the action.
UnknownResourceFault(String)
Returned when the named resource cannot be found with in the scope of this operation (region or domain). This could happen if the named resource was never created or is no longer available for this operation.
Implementations§
Source§impl DescribeActivityTypeError
impl DescribeActivityTypeError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeActivityTypeError>
Trait Implementations§
Source§impl Debug for DescribeActivityTypeError
impl Debug for DescribeActivityTypeError
Source§impl Display for DescribeActivityTypeError
impl Display for DescribeActivityTypeError
Source§impl Error for DescribeActivityTypeError
impl Error for DescribeActivityTypeError
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 DescribeActivityTypeError
Auto Trait Implementations§
impl Freeze for DescribeActivityTypeError
impl RefUnwindSafe for DescribeActivityTypeError
impl Send for DescribeActivityTypeError
impl Sync for DescribeActivityTypeError
impl Unpin for DescribeActivityTypeError
impl UnwindSafe for DescribeActivityTypeError
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