[][src]Trait netaddr2::Merge

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

Merge two items together

Associated Types

type Output

The type of the result of the merge

Loading content...

Required methods

fn merge(&self, other: &Self) -> Self::Output

Perform the merging operation

Loading content...

Implementors

impl Merge for NetAddr[src]

type Output = Option<Self>

impl Merge for Netv4Addr[src]

type Output = Option<Self>

impl Merge for Netv6Addr[src]

type Output = Option<Self>

Loading content...