pub enum GetEffectivePoliciesError {
InternalFailure(String),
InvalidRequest(String),
LimitExceeded(String),
ResourceNotFound(String),
ServiceUnavailable(String),
Throttling(String),
Unauthorized(String),
}Expand description
Errors returned by GetEffectivePolicies
Variants§
InternalFailure(String)
An unexpected error has occurred.
InvalidRequest(String)
The request is not valid.
LimitExceeded(String)
A limit has been exceeded.
ResourceNotFound(String)
The specified resource does not exist.
The service is temporarily unavailable.
Throttling(String)
The rate exceeds the limit.
You are not authorized to perform this operation.
Implementations§
Source§impl GetEffectivePoliciesError
impl GetEffectivePoliciesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetEffectivePoliciesError>
Trait Implementations§
Source§impl Debug for GetEffectivePoliciesError
impl Debug for GetEffectivePoliciesError
Source§impl Display for GetEffectivePoliciesError
impl Display for GetEffectivePoliciesError
Source§impl Error for GetEffectivePoliciesError
impl Error for GetEffectivePoliciesError
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 GetEffectivePoliciesError
Auto Trait Implementations§
impl Freeze for GetEffectivePoliciesError
impl RefUnwindSafe for GetEffectivePoliciesError
impl Send for GetEffectivePoliciesError
impl Sync for GetEffectivePoliciesError
impl Unpin for GetEffectivePoliciesError
impl UnwindSafe for GetEffectivePoliciesError
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