pub struct Ol {
pub clock: Option<u8>,
pub cntdwn: Option<bool>,
pub min: Option<u8>,
pub max: Option<u8>,
pub o12pix: Option<u8>,
pub o5m: Option<bool>,
pub osec: Option<bool>,
}
Expand description
anolog clock stuff?
Fields§
§clock: Option<u8>
0: no overlay 1: analog clock 2: was single-digit clock 3: was cronixie
cntdwn: Option<bool>
Countdown mode; Clock will count down towards date
min: Option<u8>
Overlay min; boundaries of overlay mode
max: Option<u8>
Overlay max; boundaries of overlay mode
o12pix: Option<u8>
The pixel in your strip where “midnight” would be
o5m: Option<bool>
analog Clock 5 Minute Marks; Light pixels at every 5-minute position
osec: Option<bool>
Display seconds as trail of LEDs instead of a single pixel
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Ol
impl<'de> Deserialize<'de> for Ol
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
impl StructuralPartialEq for Ol
Auto Trait Implementations§
impl Freeze for Ol
impl RefUnwindSafe for Ol
impl Send for Ol
impl Sync for Ol
impl Unpin for Ol
impl UnwindSafe for Ol
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