pub trait AbstractDomain {
    fn join(&mut self, other: &Self) -> JoinResult;
}
Expand description

A trait to be implemented by domains which support a join.

Required Methods

Implementations on Foreign Types

Implementors