[][src]Struct rcut::CharProcessor

pub struct CharProcessor {}

Trait Implementations

impl ProcessChar for CharProcessor[src]

fn process_lines<P: ProcessLineByChar, R: Read, W: Write>(
    &self,
    line_processor: P,
    input: BufReader<R>,
    output: &mut BufWriter<W>,
    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,
    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,
    ranged_pairs: &Vec<(usize, usize)>
)
[src]

Process files: Send them via rcut pipeline

fn process(&self, char_mode: &CharMode)[src]

Cut and paste lines by ranges of characters

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.