pub type SetResult<T> = Result<T, SetError>;
A result returned when changing a setting.
pub enum SetResult<T> { Ok(T), Err(SetError), }
Contains the success value
Contains the error value