Enum action_core::FileCommandError
source · pub enum FileCommandError {
Missing {
source: VarError,
cmd: String,
},
Io(Error),
Value(ValueError),
}
Variants§
Trait Implementations§
source§impl Debug for FileCommandError
impl Debug for FileCommandError
source§impl Display for FileCommandError
impl Display for FileCommandError
source§impl Error for FileCommandError
impl Error for FileCommandError
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<Error> for FileCommandError
impl From<Error> for FileCommandError
source§impl From<FileCommandError> for AddPathError
impl From<FileCommandError> for AddPathError
source§fn from(source: FileCommandError) -> Self
fn from(source: FileCommandError) -> Self
Converts to this type from the input type.
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 FileCommandError
impl From<ValueError> for FileCommandError
source§fn from(source: ValueError) -> Self
fn from(source: ValueError) -> Self
Converts to this type from the input type.