[][src]Struct evtx::ParserSettings

pub struct ParserSettings { /* fields omitted */ }

Methods

impl ParserSettings[src]

pub fn new() -> Self[src]

pub fn num_threads(self, num_threads: usize) -> Self[src]

Sets the number of worker threads. 0 will let rayon decide.

pub fn ansi_codec(self, ansi_codec: EncodingRef) -> Self[src]

Sets the ansi codec used by the parser.

pub fn validate_checksums(self, validate_checksums: bool) -> Self[src]

pub fn indent(self, pretty: bool) -> Self[src]

pub fn get_ansi_codec(&self) -> EncodingRef[src]

Gets the current ansi codec

pub fn should_indent(&self) -> bool[src]

pub fn should_validate_checksums(&self) -> bool[src]

pub fn get_num_threads(&self) -> &usize[src]

Trait Implementations

impl PartialEq<ParserSettings> for ParserSettings[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Clone for ParserSettings[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for ParserSettings[src]

impl Debug for ParserSettings[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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