pub trait IpBitwiseExt<Rhs = Self> {
type Output;
// Required methods
fn bitand(self, rhs: Rhs) -> Self::Output;
fn bitor(self, rhs: Rhs) -> Self::Output;
fn bitxor(self, rhs: Rhs) -> Self::Output;
}
Expand description
An extension trait providing bitwise binary operations for Ipv4Addr and Ipv6Addr types.