Enum quantity::QuantityError
source · pub enum QuantityError {
UnitError {
op: String,
expected: String,
found: String,
},
SINumberError {
op: String,
cause: String,
},
}
Expand description
Error type used to indicate unit conversion failures.
Variants§
Trait Implementations§
source§impl Debug for QuantityError
impl Debug for QuantityError
source§impl Display for QuantityError
impl Display for QuantityError
source§impl Error for QuantityError
impl Error for QuantityError
1.30.0 · 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()