pub trait AtatResp { }
Expand description

This trait needs to be implemented for every response type.

Example:

use atat::AtatResp;

pub struct GreetingText {
    pub text: heapless::String<64>,
}

impl AtatResp for GreetingText {}

Implementations on Foreign Types

Implementors