pub enum DescribeInstancesHealthError {
ElasticBeanstalkService(String),
InvalidRequest(String),
}
Expand description
Errors returned by DescribeInstancesHealth
Variants§
ElasticBeanstalkService(String)
A generic service exception has occurred.
InvalidRequest(String)
One or more input parameters is not valid. Please correct the input parameters and try the operation again.
Implementations§
Trait Implementations§
Source§impl Debug for DescribeInstancesHealthError
impl Debug for DescribeInstancesHealthError
Source§impl Error for DescribeInstancesHealthError
impl Error for DescribeInstancesHealthError
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 DescribeInstancesHealthError
impl PartialEq for DescribeInstancesHealthError
Source§fn eq(&self, other: &DescribeInstancesHealthError) -> bool
fn eq(&self, other: &DescribeInstancesHealthError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeInstancesHealthError
Auto Trait Implementations§
impl Freeze for DescribeInstancesHealthError
impl RefUnwindSafe for DescribeInstancesHealthError
impl Send for DescribeInstancesHealthError
impl Sync for DescribeInstancesHealthError
impl Unpin for DescribeInstancesHealthError
impl UnwindSafe for DescribeInstancesHealthError
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