pub enum DescribeReservedCacheNodesError {
InvalidParameterCombination(String),
InvalidParameterValue(String),
ReservedCacheNodeNotFoundFault(String),
}
Expand description
Errors returned by DescribeReservedCacheNodes
Variants§
InvalidParameterCombination(String)
Two or more incompatible parameters were specified.
InvalidParameterValue(String)
The value for a parameter is invalid.
ReservedCacheNodeNotFoundFault(String)
The requested reserved cache node was not found.
Implementations§
Trait Implementations§
Source§impl Error for DescribeReservedCacheNodesError
impl Error for DescribeReservedCacheNodesError
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 DescribeReservedCacheNodesError
impl PartialEq for DescribeReservedCacheNodesError
Source§fn eq(&self, other: &DescribeReservedCacheNodesError) -> bool
fn eq(&self, other: &DescribeReservedCacheNodesError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeReservedCacheNodesError
Auto Trait Implementations§
impl Freeze for DescribeReservedCacheNodesError
impl RefUnwindSafe for DescribeReservedCacheNodesError
impl Send for DescribeReservedCacheNodesError
impl Sync for DescribeReservedCacheNodesError
impl Unpin for DescribeReservedCacheNodesError
impl UnwindSafe for DescribeReservedCacheNodesError
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