netaddr2/traits/
contains.rs

1/// Check containment of one object within another
2pub trait Contains<T> {
3	fn contains(&self, other: &T) -> bool;
4}