Trait parsell::Factory [] [src]

pub trait Factory {
    type Output;
    fn build(&self) -> Self::Output;
}

A trait for factories.

Associated Types

type Output

Required Methods

fn build(&self) -> Self::Output

Implementors