pub type NightModeSetResult = Result<(), Error>;
enum NightModeSetResult { Ok(()), Err(Error), }
Contains the success value
Contains the error value