[][src]Trait simple_arguments::Filler

pub trait Filler {
    fn fill(
        &mut self,
        s: &mut dyn Iterator<Item = &str>
    ) -> Result<(), ArgError>; fn type_name(&self) -> &'static str { ... } }

This trait is the one which has to be implemented by every argument passed to the Arguments struct.

Required methods

fn fill(&mut self, s: &mut dyn Iterator<Item = &str>) -> Result<(), ArgError>

Loading content...

Provided methods

fn type_name(&self) -> &'static str

Loading content...

Implementations on Foreign Types

impl<'_, T: FromStr> Filler for &'_ mut T[src]

Loading content...

Implementors

Loading content...