use num_traits::FromPrimitive;
use silizium::Status;
use silizium::zigbee::security::man::{Context, Key};
use crate::Error;
crate::frame::parameters::frame!(
0x0114,
{ context: Context },
impl {
impl Command {
#[must_use]
pub const fn new(context: Context) -> Self {
Self { context }
}
}
},
{ key: Key, status: u32 } => Security(security)::ExportKey,
impl {
impl TryFrom<Response> for Key {
type Error = Error;
fn try_from(response: Response) -> Result<Self, Self::Error> {
match Status::from_u32(response.status).ok_or(response.status) {
Ok(Status::Ok) => Ok(response.key),
other => Err(other.into()),
}
}
}
}
);