pub enum GetResolverRulePolicyError {
InternalServiceError(String),
InvalidParameter(String),
UnknownResource(String),
}
Expand description
Errors returned by GetResolverRulePolicy
Variants§
InternalServiceError(String)
We encountered an unknown error. Try again in a few minutes.
InvalidParameter(String)
One or more parameters in this request are not valid.
UnknownResource(String)
The specified resource doesn't exist.
Implementations§
Source§impl GetResolverRulePolicyError
impl GetResolverRulePolicyError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetResolverRulePolicyError>
Trait Implementations§
Source§impl Debug for GetResolverRulePolicyError
impl Debug for GetResolverRulePolicyError
Source§impl Display for GetResolverRulePolicyError
impl Display for GetResolverRulePolicyError
Source§impl Error for GetResolverRulePolicyError
impl Error for GetResolverRulePolicyError
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 GetResolverRulePolicyError
Auto Trait Implementations§
impl Freeze for GetResolverRulePolicyError
impl RefUnwindSafe for GetResolverRulePolicyError
impl Send for GetResolverRulePolicyError
impl Sync for GetResolverRulePolicyError
impl Unpin for GetResolverRulePolicyError
impl UnwindSafe for GetResolverRulePolicyError
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