[][src]Trait atat::ATATInterface

pub trait ATATInterface {
    fn send<A: ATATCmd>(&mut self, cmd: &A) -> Result<A::Response, Error>;
fn check_response<A: ATATCmd>(
        &mut self,
        cmd: &A
    ) -> Result<A::Response, Error>; }

Required methods

fn send<A: ATATCmd>(&mut self, cmd: &A) -> Result<A::Response, Error>

fn check_response<A: ATATCmd>(&mut self, cmd: &A) -> Result<A::Response, Error>

Loading content...

Implementors

impl<Tx, T> ATATInterface for ATClient<Tx, T> where
    Tx: Write<u8>,
    T: CountDown,
    T::Time: From<u32>, 
[src]

Loading content...