pub struct MatrixLed {
pub display_enabled: u8,
pub rows: u8,
pub columns: u8,
pub refresh_flag: u8,
pub data: [u8; 8],
}Expand description
Matrix LED configuration
Fields§
§display_enabled: u8§rows: u8§columns: u8§refresh_flag: u8§data: [u8; 8]Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MatrixLed
impl<'de> Deserialize<'de> for MatrixLed
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MatrixLed
impl RefUnwindSafe for MatrixLed
impl Send for MatrixLed
impl Sync for MatrixLed
impl Unpin for MatrixLed
impl UnwindSafe for MatrixLed
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more