[][src]Struct openstack::compute::ServerAddress

pub struct ServerAddress {
    pub addr: IpAddr,
    pub mac_addr: Option<String>,
    pub addr_type: Option<AddressType>,
}
[]

Address of a server.

Fields

addr: IpAddr
[]

IP (v4 of v6) address.

mac_addr: Option<String>
[]

MAC address (if available).

addr_type: Option<AddressType>
[]

Address type (if known).

Trait Implementations

impl Clone for ServerAddress[src][+]

impl Debug for ServerAddress[src][+]

impl<'de> Deserialize<'de> for ServerAddress[src][+]

Auto Trait Implementations

impl RefUnwindSafe for ServerAddress

impl Send for ServerAddress

impl Sync for ServerAddress

impl Unpin for ServerAddress

impl UnwindSafe for ServerAddress

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src][+]

impl<T> Instrument for T[src][+]

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

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

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.