[][src]Struct eureka::Eureka

pub struct Eureka<W, R> {
    pub fh: FileHandler,
    pub printer: Printer<W>,
    pub reader: Reader<R>,
}

Fields

fh: FileHandlerprinter: Printer<W>reader: Reader<R>

Implementations

impl<W, R> Eureka<W, R> where
    W: Write + WriteColor,
    R: BufRead
[src]

pub fn run(&mut self)[src]

pub fn clear_repo(&self)[src]

pub fn open_idea_file(&self)[src]

Auto Trait Implementations

impl<W, R> RefUnwindSafe for Eureka<W, R> where
    R: RefUnwindSafe,
    W: RefUnwindSafe

impl<W, R> Send for Eureka<W, R> where
    R: Send,
    W: Send

impl<W, R> Sync for Eureka<W, R> where
    R: Sync,
    W: Sync

impl<W, R> Unpin for Eureka<W, R> where
    R: Unpin,
    W: Unpin

impl<W, R> UnwindSafe for Eureka<W, R> where
    R: UnwindSafe,
    W: UnwindSafe

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.