Enum snmp_parser::error::SnmpError [] [src]

pub enum SnmpError {
    InvalidMessage,
    InvalidVersion,
    InvalidPduType,
    InvalidPdu,
    InvalidHeaderData,
    InvalidScopedPduData,
}

Variants

Invalid message: not a DER sequence, or unexpected number of items, etc.

Invalid version: not a number, or not in supported range (1, 2 or 3)

Unknown or invalid PDU type

Invalid PDU: content does not match type, or content cannot be decoded

Invalid SNMPv3 header data

Invalid SNMPv3 scoped PDU

Trait Implementations

impl Debug for SnmpError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for SnmpError
[src]

[src]

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

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl Send for SnmpError

impl Sync for SnmpError