netaddr2 0.10.0

A Rust network address parsing and arithmetic library
Documentation
1
2
3
4
5
6
7
8
/// Merge two items together
pub trait Merge {
	/// The type of the result of the merge
	type Output;

	/// Perform the merging operation
	fn merge(&self, other: &Self) -> Self::Output;
}