Enum qapi_qmp::SocketAddressLegacy [] [src]

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

Variants

Fields of inet

Fields of fd

Fields of unix

Fields of vsock

Trait Implementations

impl Debug for SocketAddressLegacy
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SocketAddressLegacy
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations