Enum sit_core::issue::ReductionError
[−]
[src]
pub enum ReductionError<Err: Error + Debug> { ImplementationError(Err), }
Variants
ImplementationError(Err)
Trait Implementations
impl<Err: Debug + Error + Debug> Debug for ReductionError<Err>[src]
impl<Err: Error + Debug> Display for ReductionError<Err>[src]
fn fmt(&self, f: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<Err: Error + Debug> Error for ReductionError<Err>[src]
fn description(&self) -> &str[src]
A short description of the error. Read more
fn cause(&self) -> Option<&Error>[src]
The lower-level cause of this error, if any. Read more
impl<Err: Error + Debug> From<Err> for ReductionError<Err>[src]
fn from(err: Err) -> ReductionError<Err>[src]
Performs the conversion.