Enum more_wallpapers::error::CommandError
source · pub enum CommandError {
CommandIO(&'static str, Error),
CommandStatus {
command: &'static str,
exit_code: Option<i32>,
stderr: Vec<u8>,
},
}Available on Linux only.
Variants§
Trait Implementations§
source§impl Debug for CommandError
impl Debug for CommandError
source§impl Display for CommandError
impl Display for CommandError
source§impl Error for CommandError
impl Error for CommandError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CommandError> for WallpaperError
impl From<CommandError> for WallpaperError
source§fn from(source: CommandError) -> Self
fn from(source: CommandError) -> Self
Converts to this type from the input type.