pub trait Parser<T>:
Send
+ Sync
+ 'static {
// Required methods
fn parse<'life0, 'life1, 'async_trait>(
&'life0 self,
raw: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn format_instructions(&self) -> String;
}