powerline/homeplug/broadcom/mod.rs
1use super::*;
2
3mod get_property;
4mod set_property;
5
6pub use get_property::*;
7pub use set_property::*;
8
9#[repr(transparent)]
10#[derive(Default, PartialEq, Eq, Copy, Clone)]
11pub struct Property(pub u8);
12impl Property {
13 pub const NAME_A0: Property = Property(0x1b);
14 pub const NAME_B0: Property = Property(0x1c);
15 pub const NAME_A1: Property = Property(0x25);
16 pub const NAME_B1: Property = Property(0x26);
17}