Enum sawp_gre::ErrorFlags[][src]

#[repr(u8)]
pub enum ErrorFlags {
    RESERVE,
    VERSION,
    RESERVE1,
    MAX_SRE_REACHED,
}
Expand description

Flags which identify messages which parse as Gre but contain invalid data. The caller can use the message’s error flags to see if and what errors were in the pack of bytes and take action using this information.

Variants

RESERVE

Indicate that a reserve bit in the gre_flags field is inappropriately set

VERSION

Indicate that a reserve bit in the version field (including an incorrect version) is inappropriately set

RESERVE1

Indicate that a reserve bit in the reserve1 field is inappropriately set. This is only a concern with the current version of GRE (RFC 2874)

MAX_SRE_REACHED

Indicate that the maximum number of source route entries has been processed. This means that there is more data remaining than what was processed into the message.

Trait Implementations

Formats the value using the given formatter.

The resulting type after applying the & operator.

Performs the & operation. Read more

The resulting type after applying the | operator.

Performs the | operation. Read more

The resulting type after applying the ^ operator.

Performs the ^ operation. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Associated primitive numeric type

A list of all flag variants in the enum

Numeric representation of the variant

Flag value when no variants are set

Flag value when all variants are set

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

The resulting type after applying the ! operator.

Performs the unary ! operation. Read more

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

This method tests for !=.

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.