netaddr2 0.10.0

A Rust network address parsing and arithmetic library
Documentation
1
2
3
4
/// Check containment of one object within another
pub trait Contains<T> {
	fn contains(&self, other: &T) -> bool;
}