Enum qapi_qmp::SocketAddress[][src]

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

Variants

Fields of unix

Fields of inet

Fields of fd

Fields of vsock

Methods

impl SocketAddress
[src]

Trait Implementations

impl Debug for SocketAddress
[src]

Formats the value using the given formatter. Read more

impl Clone for SocketAddress
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SocketAddress

impl Sync for SocketAddress