Trait netaddr2::Merge[][src]

pub trait Merge {
    type Output;
    fn merge(&self, other: &Self) -> Self::Output;
}
Expand description

Merge two items together

Associated Types

The type of the result of the merge

Required methods

Perform the merging operation

Implementors