pub enum DescribeClusterSubnetGroupsError {
ClusterSubnetGroupNotFoundFault(String),
InvalidTagFault(String),
}
Expand description
Errors returned by DescribeClusterSubnetGroups
Variants§
ClusterSubnetGroupNotFoundFault(String)
The cluster subnet group name does not refer to an existing cluster subnet group.
InvalidTagFault(String)
The tag is invalid.
Implementations§
Trait Implementations§
Source§impl Error for DescribeClusterSubnetGroupsError
impl Error for DescribeClusterSubnetGroupsError
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 DescribeClusterSubnetGroupsError
impl PartialEq for DescribeClusterSubnetGroupsError
Source§fn eq(&self, other: &DescribeClusterSubnetGroupsError) -> bool
fn eq(&self, other: &DescribeClusterSubnetGroupsError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeClusterSubnetGroupsError
Auto Trait Implementations§
impl Freeze for DescribeClusterSubnetGroupsError
impl RefUnwindSafe for DescribeClusterSubnetGroupsError
impl Send for DescribeClusterSubnetGroupsError
impl Sync for DescribeClusterSubnetGroupsError
impl Unpin for DescribeClusterSubnetGroupsError
impl UnwindSafe for DescribeClusterSubnetGroupsError
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