Enum boxcars::NetworkParse[][src]

pub enum NetworkParse {
    Always,
    Never,
    IgnoreOnError,
}

Determines how the parser should handle the network data, which is the most intensive and volatile section of the replay.

Variants

If the network data fails parse return an error

Skip parsing the network data

Attempt to parse the network data, but if unsuccessful ignore the error and continue parsing

Trait Implementations

impl Debug for NetworkParse
[src]

Formats the value using the given formatter. Read more

impl Clone for NetworkParse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NetworkParse
[src]

impl PartialEq for NetworkParse
[src]

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

This method tests for !=.

impl Eq for NetworkParse
[src]

Auto Trait Implementations