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

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

Required Methods§

source

fn join(&mut self, other: &Self) -> JoinResult

Implementations on Foreign Types§

source§

impl AbstractDomain for Access

source§

fn join(&mut self, other: &Self) -> JoinResult

Implementors§