Trait atat::AtatUrc

source ·
pub trait AtatUrc {
    type Response: Clone;

    // Required method
    fn parse(resp: &[u8]) -> Option<Self::Response>;
}

Required Associated Types§

source

type Response: Clone

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

Required Methods§

source

fn parse(resp: &[u8]) -> Option<Self::Response>

Parse the response into a Self::Response instance.

Object Safety§

This trait is not object safe.

Implementors§