Enum ptx_builder::error::ErrorKind
[−]
pub enum ErrorKind {
Msg(String),
Utf8Error(FromUtf8Error),
Io(Error),
TomlError(Error),
RegexError(Error),
SemVerError(SemVerError),
CommandNotFound(String, String),
CommandFailed(String, i32, String),
CommandVersionNotFulfilled(String, Version, VersionReq, String),
InvalidCratePath(PathBuf),
BuildFailed(Vec<String>),
InternalError(String),
// some variants omitted
}The kind of an error.
Variants
Msg(String)A convenient variant for String.
Utf8Error(FromUtf8Error)Io(Error)TomlError(Error)RegexError(Error)SemVerError(SemVerError)CommandNotFound(String, String)CommandFailed(String, i32, String)CommandVersionNotFulfilled(String, Version, VersionReq, String)InvalidCratePath(PathBuf)BuildFailed(Vec<String>)InternalError(String)
Methods
impl ErrorKind
pub fn description(&self) -> &str
A string describing the error kind.
Trait Implementations
impl From<ErrorKind> for Error
impl Debug for ErrorKind
fn fmt(&self, __arg_0: &mut Formatter) -> Result
Formats the value using the given formatter. Read more