pub trait TxtRecordParser: Sized {
    fn parse(record: &[u8]) -> Result<Self>;
}

Required Methods§

Implementors§