oca 0.2.0

An experiment with no_std
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{
    ocp1::pdu::{Handle, Parameters},
    types::OcaStatus,
};

#[derive(Debug, Copy, Clone, Eq, PartialEq)]
pub struct Response<'a> {
    pub handle: Handle,
    pub status: OcaStatus,
    pub parameters: Parameters<'a>,
}