pub enum GetGenericPortMappingEntryError {
ActionNotAuthorized,
SpecifiedArrayIndexInvalid,
RequestError(RequestError),
}
Expand description
Errors than can occur while getting a port mapping
Variants§
ActionNotAuthorized
The client is not authorized to perform the operation.
SpecifiedArrayIndexInvalid
The specified array index is out of bounds.
RequestError(RequestError)
Some other error occured performing the request.
Trait Implementations§
source§impl Error for GetGenericPortMappingEntryError
impl Error for GetGenericPortMappingEntryError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 From<RequestError> for GetGenericPortMappingEntryError
impl From<RequestError> for GetGenericPortMappingEntryError
source§fn from(err: RequestError) -> GetGenericPortMappingEntryError
fn from(err: RequestError) -> GetGenericPortMappingEntryError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for GetGenericPortMappingEntryError
impl Send for GetGenericPortMappingEntryError
impl Sync for GetGenericPortMappingEntryError
impl Unpin for GetGenericPortMappingEntryError
impl !UnwindSafe for GetGenericPortMappingEntryError
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