[][src]Struct alog::IOConfig

pub struct IOConfig<'a> {
    pub input: Option<Vec<&'a str>>,
    pub output: Option<&'a str>,
}

INPUT / OUTPUT config

Fields

input: Option<Vec<&'a str>>

List of input paths / files, e.g. Some(["/tmp/test1.log", "/tmp/test2.log"])

output: Option<&'a str>

Single output path / file

Methods

impl<'a> IOConfig<'a>[src]

pub fn get_input(&self) -> Option<&Vec<&'a str>>[src]

Get input / reader names, if any (defaults to None)

pub fn get_output(&self) -> Option<&'a str>[src]

Get output / writer name (defaults to None)

pub fn push_input(&mut self, i: &'a str)[src]

Add input Path

pub fn set_output(&mut self, output: &'a str)[src]

Set output Path

Trait Implementations

impl<'a> Debug for IOConfig<'a>[src]

impl<'a> Default for IOConfig<'a>[src]

defaults to None for both input and output

Auto Trait Implementations

impl<'a> RefUnwindSafe for IOConfig<'a>

impl<'a> Send for IOConfig<'a>

impl<'a> Sync for IOConfig<'a>

impl<'a> Unpin for IOConfig<'a>

impl<'a> UnwindSafe for IOConfig<'a>

Blanket Implementations

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

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

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

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.