pub struct PrefixLength<I: Ip> { /* private fields */ }
Expand description
An IP prefix length.
Implementations§
Source§impl<I: Ip> PrefixLength<I>
impl<I: Ip> PrefixLength<I>
Sourcepub const fn get(self) -> u8
pub const fn get(self) -> u8
Returns the prefix length.
The returned length is guaranteed to be a valid prefix length for
I::Addr
.
Sourcepub const unsafe fn new_unchecked(prefix_length: u8) -> Self
pub const unsafe fn new_unchecked(prefix_length: u8) -> Self
Constructs a PrefixLength
from a given prefix length without checking
whether it is too long for the address type.
§Safety
prefix_length
must be less than or equal to the number of bits in
I::Addr
. In other words, prefix_length <= I::Addr::BYTES * 8
.
Sourcepub const fn new(prefix_length: u8) -> Result<Self, PrefixTooLongError>
pub const fn new(prefix_length: u8) -> Result<Self, PrefixTooLongError>
Constructs a PrefixLength
from a given unverified prefix length.
Returns Err(PrefixTooLongError)
if prefix_length
is too long for the
address type.
Sourcepub fn try_from_subnet_mask(
subnet_mask: I::Addr,
) -> Result<Self, NotSubnetMaskError>
pub fn try_from_subnet_mask( subnet_mask: I::Addr, ) -> Result<Self, NotSubnetMaskError>
Constructs a PrefixLength
from an IP address representing a subnet mask.
Returns Err(NotSubnetMaskError)
if subnet_mask
is not a valid subnet
mask.
Trait Implementations§
Source§impl<I: Clone + Ip> Clone for PrefixLength<I>
impl<I: Clone + Ip> Clone for PrefixLength<I>
Source§fn clone(&self) -> PrefixLength<I>
fn clone(&self) -> PrefixLength<I>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<I: Ip> From<PrefixLength<I>> for u8
impl<I: Ip> From<PrefixLength<I>> for u8
Source§fn from(value: PrefixLength<I>) -> Self
fn from(value: PrefixLength<I>) -> Self
Converts to this type from the input type.
Source§impl<I: Ip, IpType> GenericOverIp<IpType> for PrefixLength<I>where
IpType: Ip,
impl<I: Ip, IpType> GenericOverIp<IpType> for PrefixLength<I>where
IpType: Ip,
Source§type Type = PrefixLength<IpType>
type Type = PrefixLength<IpType>
The type of
Self
when its IP-generic parameter is replaced with the
type NewIp
.Source§impl<I: Ord + Ip> Ord for PrefixLength<I>
impl<I: Ord + Ip> Ord for PrefixLength<I>
Source§fn cmp(&self, other: &PrefixLength<I>) -> Ordering
fn cmp(&self, other: &PrefixLength<I>) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<I: PartialOrd + Ip> PartialOrd for PrefixLength<I>
impl<I: PartialOrd + Ip> PartialOrd for PrefixLength<I>
impl<I: Copy + Ip> Copy for PrefixLength<I>
impl<I: Eq + Ip> Eq for PrefixLength<I>
impl<I: Ip> StructuralPartialEq for PrefixLength<I>
Auto Trait Implementations§
impl<I> Freeze for PrefixLength<I>
impl<I> RefUnwindSafe for PrefixLength<I>where
I: RefUnwindSafe,
impl<I> Send for PrefixLength<I>
impl<I> Sync for PrefixLength<I>
impl<I> Unpin for PrefixLength<I>where
I: Unpin,
impl<I> UnwindSafe for PrefixLength<I>where
I: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)