Enum snmp_parser::snmp::NetworkAddress [] [src]

pub enum NetworkAddress {
    IPv4(Ipv4Addr),
}

This CHOICE represents an address from one of possibly several protocol families. Currently, only one protocol family, the Internet family, is present in this CHOICE.

Variants

Trait Implementations

impl Copy for NetworkAddress
[src]

impl Clone for NetworkAddress
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for NetworkAddress
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for NetworkAddress
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

Auto Trait Implementations