Struct wled_json_api_library::structures::cfg::cfg_timers::Ins
source · pub struct Ins {
pub en: Option<bool>,
pub hour: Option<u8>,
pub min: Option<i8>,
pub macro_field: Option<u8>,
pub start: Option<MonthDay>,
pub end: Option<MonthDay>,
}Fields§
§en: Option<bool>enabled?
hour: Option<u8>hour, I don’t think this one needs much explaining
min: Option<i8>minute, I don’t think this one needs much explaining
macro_field: Option<u8>Macro to execute when triggered
start: Option<MonthDay>Day and month that this timer turns on every year
end: Option<MonthDay>Day and month that this timer turns off every year
Trait Implementations§
source§impl<'de> Deserialize<'de> for Ins
impl<'de> Deserialize<'de> for Ins
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 Ins
Auto Trait Implementations§
impl RefUnwindSafe for Ins
impl Send for Ins
impl Sync for Ins
impl Unpin for Ins
impl UnwindSafe for Ins
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