Enum snmp_parser::snmp::ObjectSyntax [] [src]

pub enum ObjectSyntax<'a> {
    Number(DerObject<'a>),
    String(&'a [u8]),
    Object(Oid),
    Empty,
    Address(NetworkAddress),
    Counter(Counter),
    Gauge(Gauge),
    Ticks(TimeTicks),
    Arbitrary(DerObject<'a>),
}

Variants

Trait Implementations

impl<'a> Debug for ObjectSyntax<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> PartialEq for ObjectSyntax<'a>
[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

impl<'a> Send for ObjectSyntax<'a>

impl<'a> Sync for ObjectSyntax<'a>