Input

Trait Input 

Source
pub trait Input {
    type Part;

    // Required method
    fn take_one_part(&self) -> Option<(Self::Part, Self)>
       where Self: Sized;
}

Required Associated Types§

Required Methods§

Source

fn take_one_part(&self) -> Option<(Self::Part, Self)>
where Self: Sized,

Implementations on Foreign Types§

Source§

impl Input for &str

Source§

type Part = char

Source§

fn take_one_part(&self) -> Option<(Self::Part, Self)>

Implementors§