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

pub enum SnmpError {
    InvalidMessage,
    InvalidVersion,
    InvalidPduType,
    InvalidPdu,
    InvalidHeaderData,
    InvalidScopedPduData,
    NomError(ErrorKind),
    BerError(BerError),
}

Variants

InvalidMessage

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

InvalidVersion

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

InvalidPduType

Unknown or invalid PDU type

InvalidPdu

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

InvalidHeaderData

Invalid SNMPv3 header data

InvalidScopedPduData

Invalid SNMPv3 scoped PDU

NomError(ErrorKind)

Nom error

BerError(BerError)

Trait Implementations

impl From<BerError> for SnmpError[src]

impl PartialEq<SnmpError> for SnmpError[src]

impl Debug for SnmpError[src]

impl<I> ParseError<I> for SnmpError[src]

fn from_char(input: I, char) -> Self[src]

creates an error from an input position and an expected character

fn or(self, other: Self) -> Self[src]

combines two existing error. This function is used to compare errors generated in various branches of [alt] Read more

fn add_context(_input: I, _ctx: &'static str, other: Self) -> Self[src]

create a new error from an input position, a static string and an existing error. This is used mainly in the [context] combinator, to add user friendly information to errors when backtracking through a parse tree Read more

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]