pub enum UpdateDomainAssociationError {
BadRequest(String),
DependentServiceFailure(String),
InternalFailure(String),
NotFound(String),
Unauthorized(String),
}
Expand description
Errors returned by UpdateDomainAssociation
Variants§
BadRequest(String)
A request contains unexpected data.
DependentServiceFailure(String)
An operation failed because a dependent service threw an exception.
InternalFailure(String)
The service failed to perform an operation due to an internal issue.
NotFound(String)
An entity was not found during an operation.
An operation failed due to a lack of access.
Implementations§
Trait Implementations§
Source§impl Debug for UpdateDomainAssociationError
impl Debug for UpdateDomainAssociationError
Source§impl Error for UpdateDomainAssociationError
impl Error for UpdateDomainAssociationError
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 UpdateDomainAssociationError
impl PartialEq for UpdateDomainAssociationError
Source§fn eq(&self, other: &UpdateDomainAssociationError) -> bool
fn eq(&self, other: &UpdateDomainAssociationError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateDomainAssociationError
Auto Trait Implementations§
impl Freeze for UpdateDomainAssociationError
impl RefUnwindSafe for UpdateDomainAssociationError
impl Send for UpdateDomainAssociationError
impl Sync for UpdateDomainAssociationError
impl Unpin for UpdateDomainAssociationError
impl UnwindSafe for UpdateDomainAssociationError
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