pub struct Nl {
pub mode: Option<NightLightMode>,
pub dur: Option<u8>,
pub tbri: Option<u8>,
pub macro_field: Option<u8>,
}
Expand description
night light stuff, tired of documenting speghetti
Fields§
§mode: Option<NightLightMode>
see struct documentation
dur: Option<u8>
see struct documentation
tbri: Option<u8>
brightness after nightlight is over
macro_field: Option<u8>
after nightlight delay over
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Nl
impl<'de> Deserialize<'de> for Nl
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 Nl
Auto Trait Implementations§
impl Freeze for Nl
impl RefUnwindSafe for Nl
impl Send for Nl
impl Sync for Nl
impl Unpin for Nl
impl UnwindSafe for Nl
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