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
impl ErrorKindpub fn description(&self) -> &str
pub fn description(&self) -> &strA string describing the error kind.
Trait Implementations
impl From<ErrorKind> for Error
impl From<ErrorKind> for Errorimpl Debug for ErrorKind
impl Debug for ErrorKindimpl Display for ErrorKind
impl Display for ErrorKindimpl<'a> From<&'a str> for ErrorKind
impl<'a> From<&'a str> for ErrorKindimpl From<String> for ErrorKind
impl From<String> for ErrorKindimpl From<Error> for ErrorKind
impl From<Error> for ErrorKind