[][src]Struct efi_ffi::device_path::IPv6_DEVICE_PATH

#[repr(packed)]pub struct IPv6_DEVICE_PATH {
    pub Header: EFI_DEVICE_PATH_PROTOCOL,
    pub LocalIpAddress: EFI_IPv6_ADDRESS,
    pub RemoteIpAddress: EFI_IPv6_ADDRESS,
    pub LocalPort: UINT16,
    pub RemotePort: UINT16,
    pub Protocol: UINT16,
    pub IpAddressOrigin: UINT8,
    pub PrefixLength: UINT8,
    pub GatewayIpAddress: EFI_IPv6_ADDRESS,
}

Fields

Header: EFI_DEVICE_PATH_PROTOCOLLocalIpAddress: EFI_IPv6_ADDRESS

The local IPv6 address.

RemoteIpAddress: EFI_IPv6_ADDRESS

The remote IPv6 address.

LocalPort: UINT16

The local port number.

RemotePort: UINT16

The remote port number.

Protocol: UINT16

The network protocol(i.e. UDP, TCP).

IpAddressOrigin: UINT8

0x00 - The Local IP Address was manually configured. 0x01 - The Local IP Address is assigned through IPv6 stateless auto-configuration. 0x02 - The Local IP Address is assigned through IPv6 stateful configuration.

PrefixLength: UINT8

The prefix length

GatewayIpAddress: EFI_IPv6_ADDRESS

The gateway IP address

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.