pub enum RezCoreError {
Show 16 variants
VersionParse(String),
VersionRange(String),
PackageParse(String),
RequirementParse(String),
Solver(String),
Repository(String),
Cache(String),
Io(Error),
Serde(Error),
Python(String),
RexError(String),
ContextError(String),
BuildError(String),
ExecutionError(String),
CliError(String),
ConfigError(String),
}Expand description
Main error type for rez-core operations
Variants§
VersionParse(String)
VersionRange(String)
PackageParse(String)
RequirementParse(String)
Solver(String)
Repository(String)
Cache(String)
Io(Error)
Serde(Error)
Python(String)
RexError(String)
ContextError(String)
BuildError(String)
ExecutionError(String)
CliError(String)
ConfigError(String)
Trait Implementations§
Source§impl Debug for RezCoreError
impl Debug for RezCoreError
Source§impl Display for RezCoreError
impl Display for RezCoreError
Source§impl Error for RezCoreError
impl Error for RezCoreError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 RezCoreError
impl From<Error> for RezCoreError
Auto Trait Implementations§
impl Freeze for RezCoreError
impl !RefUnwindSafe for RezCoreError
impl Send for RezCoreError
impl Sync for RezCoreError
impl Unpin for RezCoreError
impl !UnwindSafe for RezCoreError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more