crate::frame::parameters::frame!(
0x002E,
{ index: u8 },
impl {
impl Command {
#[must_use]
pub const fn new(index: u8) -> Self {
Self { index }
}
}
},
{ active: bool } => Binding(binding)::IsActive,
impl {
impl Response {
#[must_use]
pub const fn active(&self) -> bool {
self.active
}
}
}
);