1 2 3 4
use nom::IResult; pub trait AtomicTrait: Sized { fn parse(input: &str) -> IResult<&str, Self>; }