Enum action_core::CommandError
source · pub enum CommandError {
File(FileCommandError),
Value(ValueError),
}
Variants§
File(FileCommandError)
Value(ValueError)
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
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<FileCommandError> for CommandError
impl From<FileCommandError> for CommandError
source§fn from(source: FileCommandError) -> Self
fn from(source: FileCommandError) -> Self
Converts to this type from the input type.
source§impl From<ValueError> for CommandError
impl From<ValueError> for CommandError
source§fn from(source: ValueError) -> Self
fn from(source: ValueError) -> Self
Converts to this type from the input type.