[][src]Struct easy_reader::EasyReader

pub struct EasyReader<R> { /* fields omitted */ }

Methods

impl<R: Read + Seek> EasyReader<R>[src]

pub fn new(file: R) -> Result<Self, Error>[src]

pub fn chunk_size(&mut self, size: usize) -> &mut Self[src]

pub fn bof(&mut self) -> &mut Self[src]

pub fn eof(&mut self) -> &mut Self[src]

pub fn build_index(&mut self) -> Result<&mut Self>[src]

pub fn prev_line(&mut self) -> Result<Option<String>>[src]

pub fn current_line(&mut self) -> Result<Option<String>>[src]

pub fn next_line(&mut self) -> Result<Option<String>>[src]

pub fn random_line(&mut self) -> Result<Option<String>>[src]

Auto Trait Implementations

impl<R> Send for EasyReader<R> where
    R: Send

impl<R> Sync for EasyReader<R> where
    R: Sync

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]