pub enum DescribeResizeError {
ClusterNotFoundFault(String),
ResizeNotFoundFault(String),
}
Expand description
Errors returned by DescribeResize
Variants§
ClusterNotFoundFault(String)
The ClusterIdentifier
parameter does not refer to an existing cluster.
ResizeNotFoundFault(String)
A resize operation for the specified cluster is not found.
Implementations§
Source§impl DescribeResizeError
impl DescribeResizeError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DescribeResizeError>
Trait Implementations§
Source§impl Debug for DescribeResizeError
impl Debug for DescribeResizeError
Source§impl Display for DescribeResizeError
impl Display for DescribeResizeError
Source§impl Error for DescribeResizeError
impl Error for DescribeResizeError
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 DescribeResizeError
impl PartialEq for DescribeResizeError
impl StructuralPartialEq for DescribeResizeError
Auto Trait Implementations§
impl Freeze for DescribeResizeError
impl RefUnwindSafe for DescribeResizeError
impl Send for DescribeResizeError
impl Sync for DescribeResizeError
impl Unpin for DescribeResizeError
impl UnwindSafe for DescribeResizeError
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