Enum qapi_qmp::SocketAddress [] [src]

pub enum SocketAddress {
    fd {
        str: String,
    },
    inet {
        numeric: Option<bool>,
        to: Option<u16>,
        ipv4: Option<bool>,
        ipv6: Option<bool>,
    },
    vsock {
        cid: String,
        port: String,
    },
    unix {
        path: String,
    },
}

Variants

Fields of fd

Fields of inet

Fields of vsock

Fields of unix

Methods

impl SocketAddress
[src]

[src]

Trait Implementations

impl Debug for SocketAddress
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for SocketAddress
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for SocketAddress

impl Sync for SocketAddress