netaddr2/traits/
broadcast.rs

1/// Compute the "broadcast" address for supported networks.
2pub trait Broadcast {
3	/// The type of the broadcast address
4	type Output;
5
6	/// Compute the broadcast address
7	fn broadcast(&self) -> Self::Output;
8}