wlan_common/
organization.rsuse zerocopy::{FromBytes, Immutable, IntoBytes, KnownLayout, Unaligned};
#[repr(C, packed)]
#[derive(
Eq,
PartialEq,
Hash,
IntoBytes,
KnownLayout,
FromBytes,
Immutable,
Unaligned,
Copy,
Clone,
Debug,
PartialOrd,
Default,
)]
pub struct Oui([u8; 3]);
impl Oui {
pub const DOT11: Self = Self([0x00, 0x0F, 0xAC]);
pub const MSFT: Self = Self([0x00, 0x50, 0xF2]);
pub fn new(oui: [u8; 3]) -> Self {
Self(oui)
}
}
impl std::ops::Deref for Oui {
type Target = [u8];
fn deref(&self) -> &Self::Target {
&self.0[..]
}
}
impl From<Oui> for [u8; 3] {
fn from(src: Oui) -> Self {
src.0
}
}