pub enum MergerCallResult {
NotMet,
Met(MetCallResult),
}Variants§
NotMet
There is no corresponding state in a trace for this call.
Met(MetCallResult)
There was a state in at least one of the contexts. If there were two states in both contexts, they were successfully merged.
Trait Implementations§
source§impl Clone for MergerCallResult
impl Clone for MergerCallResult
source§fn clone(&self) -> MergerCallResult
fn clone(&self) -> MergerCallResult
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more