[][src]Struct rcut::FieldProcessor

pub struct FieldProcessor {}

Trait Implementations

impl ProcessField for FieldProcessor[src]

fn process_lines<R: Read, W: Write>(
    &self,
    input: BufReader<R>,
    output: &mut BufWriter<W>,
    delim: &str,
    ranged_pairs: &Vec<(usize, usize)>
)
[src]

Generic line processor that delegates to concrete line processors

fn process_readable<R: Read, W: Write>(
    &self,
    input: BufReader<R>,
    output: &mut BufWriter<W>,
    ascii_mode: bool,
    delim: &str,
    ranged_pairs: &Vec<(usize, usize)>
)
[src]

Process readable object: Send it via rcut pipeline

fn process_files<W: Write>(
    &self,
    files: &Vec<&str>,
    writable: W,
    ascii_mode: bool,
    delim: &str,
    ranged_pairs: &Vec<(usize, usize)>
)
[src]

Process files: Send them via rcut pipeline

fn process(&self, field_mode: &FieldMode)[src]

Split lines into fields by delimiter, then cut and paste ranges of fields

Auto Trait Implementations

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.