pub enum UpdateAcceleratorError {
AcceleratorNotFound(String),
InternalServiceError(String),
InvalidArgument(String),
}
Expand description
Errors returned by UpdateAccelerator
Variants§
AcceleratorNotFound(String)
The accelerator that you specified doesn't exist.
InternalServiceError(String)
There was an internal error for AWS Global Accelerator.
InvalidArgument(String)
An argument that you specified is invalid.
Implementations§
Source§impl UpdateAcceleratorError
impl UpdateAcceleratorError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateAcceleratorError>
Trait Implementations§
Source§impl Debug for UpdateAcceleratorError
impl Debug for UpdateAcceleratorError
Source§impl Display for UpdateAcceleratorError
impl Display for UpdateAcceleratorError
Source§impl Error for UpdateAcceleratorError
impl Error for UpdateAcceleratorError
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 UpdateAcceleratorError
impl PartialEq for UpdateAcceleratorError
impl StructuralPartialEq for UpdateAcceleratorError
Auto Trait Implementations§
impl Freeze for UpdateAcceleratorError
impl RefUnwindSafe for UpdateAcceleratorError
impl Send for UpdateAcceleratorError
impl Sync for UpdateAcceleratorError
impl Unpin for UpdateAcceleratorError
impl UnwindSafe for UpdateAcceleratorError
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