ezsp 7.3.1

Ember ZNet Serial Protocol
Documentation
//! Parameters for the [`Security::get_aps_key_info`](crate::Security::get_aps_key_info) command.

use le_stream::{FromLeStream, ToLeStream};
use num_traits::FromPrimitive;
use silizium::Status;
use silizium::zigbee::security::man::{ApsKeyMetadata, Context};

use crate::Error;
use crate::ember::Eui64;

crate::frame::parameters::frame!(
    0x010C,
    { context_in: Context },
    impl {
        impl Command {
            /// Creates command parameters.
            #[must_use]
            pub const fn new(context_in: Context) -> Self {
                Self { context_in }
            }
        }
    },
    { payload: KeyInfo, status: u32 } => Security(security)::GetApsKeyInfo,
    impl {
        /// Convert the response into [`KeyInfo`] or an appropriate [`Error`] depending on its status.
        impl TryFrom<Response> for KeyInfo {
            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.payload),
                    other => Err(other.into()),
                }
            }
        }
    }
);

/// The retrieved key information.
#[derive(Clone, Debug, Eq, PartialEq, FromLeStream, ToLeStream)]
pub struct KeyInfo {
    eui: Eui64,
    key_data: ApsKeyMetadata,
}

impl KeyInfo {
    /// Returns the EUI64.
    #[must_use]
    pub const fn eui(&self) -> Eui64 {
        self.eui
    }

    /// Returns the key data.
    #[must_use]
    pub const fn key_data(&self) -> &ApsKeyMetadata {
        &self.key_data
    }
}