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