Enum aws_config::imds::client::BuildError
source · [−]pub enum BuildError {
InvalidEndpointMode(InvalidEndpointMode),
InvalidProfile(ProfileParseError),
InvalidEndpointUri(InvalidUri),
}
Expand description
Error constructing IMDSv2 Client
Variants
InvalidEndpointMode(InvalidEndpointMode)
The endpoint mode was invalid
InvalidProfile(ProfileParseError)
The AWS Profile (e.g. ~/.aws/config
) was invalid
InvalidEndpointUri(InvalidUri)
The specified endpoint was not a valid URI
Trait Implementations
sourceimpl Debug for BuildError
impl Debug for BuildError
sourceimpl Display for BuildError
impl Display for BuildError
sourceimpl Error for BuildError
impl Error for BuildError
sourcefn 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 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations
impl RefUnwindSafe for BuildError
impl Send for BuildError
impl Sync for BuildError
impl Unpin for BuildError
impl UnwindSafe for BuildError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more