Enum air_trace_handler::merger::CallResultError
source · pub enum CallResultError {
ValuesNotEqual {
prev_value: ValueRef,
current_value: ValueRef,
},
IncompatibleCallResults {
prev_call: CallResult,
current_call: CallResult,
},
}Variants§
ValuesNotEqual
IncompatibleCallResults
Errors occurred when previous and current call results are incompatible.
Trait Implementations§
source§impl Debug for CallResultError
impl Debug for CallResultError
source§impl Display for CallResultError
impl Display for CallResultError
source§impl Error for CallResultError
impl Error for CallResultError
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()
source§impl From<CallResultError> for MergeError
impl From<CallResultError> for MergeError
source§fn from(source: CallResultError) -> Self
fn from(source: CallResultError) -> Self
Converts to this type from the input type.