pub enum DescribePlatformVersionError {
ElasticBeanstalkService(String),
InsufficientPrivileges(String),
}
Expand description
Errors returned by DescribePlatformVersion
Variants§
ElasticBeanstalkService(String)
A generic service exception has occurred.
InsufficientPrivileges(String)
The specified account does not have sufficient privileges for one or more AWS services.
Implementations§
Trait Implementations§
Source§impl Debug for DescribePlatformVersionError
impl Debug for DescribePlatformVersionError
Source§impl Error for DescribePlatformVersionError
impl Error for DescribePlatformVersionError
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 DescribePlatformVersionError
impl PartialEq for DescribePlatformVersionError
Source§fn eq(&self, other: &DescribePlatformVersionError) -> bool
fn eq(&self, other: &DescribePlatformVersionError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribePlatformVersionError
Auto Trait Implementations§
impl Freeze for DescribePlatformVersionError
impl RefUnwindSafe for DescribePlatformVersionError
impl Send for DescribePlatformVersionError
impl Sync for DescribePlatformVersionError
impl Unpin for DescribePlatformVersionError
impl UnwindSafe for DescribePlatformVersionError
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