pub enum GetOutpostError {
AccessDenied(String),
InternalServer(String),
NotFound(String),
}Expand description
Errors returned by GetOutpost
Variants§
AccessDenied(String)
You do not have permission to perform this operation.
InternalServer(String)
An internal error has occurred.
NotFound(String)
The specified request is not valid.
Implementations§
Source§impl GetOutpostError
impl GetOutpostError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<GetOutpostError>
Trait Implementations§
Source§impl Debug for GetOutpostError
impl Debug for GetOutpostError
Source§impl Display for GetOutpostError
impl Display for GetOutpostError
Source§impl Error for GetOutpostError
impl Error for GetOutpostError
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 GetOutpostError
impl PartialEq for GetOutpostError
impl StructuralPartialEq for GetOutpostError
Auto Trait Implementations§
impl Freeze for GetOutpostError
impl RefUnwindSafe for GetOutpostError
impl Send for GetOutpostError
impl Sync for GetOutpostError
impl Unpin for GetOutpostError
impl UnwindSafe for GetOutpostError
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