Enum qapi_qmp::SocketAddressLegacy[][src]

pub enum SocketAddressLegacy {
    vsock {
        data: VsockSocketAddress,
    },
    inet {
        data: InetSocketAddress,
    },
    fd {
        data: String,
    },
    unix {
        data: UnixSocketAddress,
    },
}

Variants

Fields of vsock

Fields of inet

Fields of fd

Fields of unix

Trait Implementations

impl Debug for SocketAddressLegacy
[src]

Formats the value using the given formatter. Read more

impl Clone for SocketAddressLegacy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SocketAddressLegacy

impl Sync for SocketAddressLegacy