Trait atat::AtatResp

source ·
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§

source§

impl<T, const L: usize> AtatResp for Vec<T, L>
where T: AtatResp,

source§

impl<const L: usize> AtatResp for String<L>

Implementors§