pub type StrTrace<'a> = Trace<&'a str>;
pub struct StrTrace<'a> { pub current: &'a str, pub position: usize, /* private fields */ }
current: &'a str
position: usize