Trait atat::Digester[][src]

pub trait Digester {
    const LINE_TERM_CHAR: u8;
    const FORMAT_CHAR: u8;

    fn reset(&mut self);
fn force_receive_state(&mut self);
fn digest<const L: usize>(
        &mut self,
        buf: &mut Vec<u8, L>,
        urc_matcher: &mut impl UrcMatcher
    ) -> DigestResult<L>; }

Associated Constants

Command line termination character S3 (Default = b’\r’ ASCII: [013])

Response formatting character S4 (Default = b’\n’ ASCII: [010])

Required methods

Implementors