Enum lrs::socket::AddrType

An address type.

Syntax

enum AddrType {
    Ipv4,
    Ipv6,
    Unix,
}

Variants

NameDescription
Ipv4

An Ipv4 socket address.

Ipv6

An Ipv6 socket address.

Unix

A Unix socket address.

Trait implementations

NameDescription
Eq

Objects that implement the binary == and != operators.