pub trait AtatUrc {
    type Response;
    fn parse(resp: &[u8]) -> Option<Self::Response>;
}

Associated Types

The type of the response. Usually the enum this trait is implemented on.

Required methods

Parse the response into a Self::Response instance.

Implementors