pub trait Interpret: Debug {
    fn interpret<'a, 's, 'f>(
        &'a self,
        state: &'s mut SmtpContext
    ) -> S1Fut<'f, InterpretResult>
    where
        'a: 'f,
        's: 'f
; }

Required methods

Implementors