Enum aws_config::imds::client::EndpointMode
source · [−]#[non_exhaustive]
pub enum EndpointMode {
IpV4,
IpV6,
}
Expand description
IMDSv2 Endpoint Mode
IMDS can be accessed in two ways:
- Via the IpV4 endpoint:
http://169.254.169.254
- Via the Ipv6 endpoint:
http://[fd00:ec2::254]
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
IpV4
IpV4 mode: http://169.254.169.254
This mode is the default unless otherwise specified.
IpV6
IpV6 mode: http://[fd00:ec2::254]
Trait Implementations
sourceimpl Clone for EndpointMode
impl Clone for EndpointMode
sourcefn clone(&self) -> EndpointMode
fn clone(&self) -> EndpointMode
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EndpointMode
impl Debug for EndpointMode
Auto Trait Implementations
impl RefUnwindSafe for EndpointMode
impl Send for EndpointMode
impl Sync for EndpointMode
impl Unpin for EndpointMode
impl UnwindSafe for EndpointMode
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