pub enum ReducedIpAddr {
V4(u32),
V6(u64),
}Variants§
Trait Implementations§
Source§impl Clone for ReducedIpAddr
impl Clone for ReducedIpAddr
Source§fn clone(&self) -> ReducedIpAddr
fn clone(&self) -> ReducedIpAddr
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ReducedIpAddr
impl Eq for ReducedIpAddr
Source§impl From<IpAddr> for ReducedIpAddr
impl From<IpAddr> for ReducedIpAddr
Source§impl Hash for ReducedIpAddr
impl Hash for ReducedIpAddr
Source§impl PartialEq for ReducedIpAddr
impl PartialEq for ReducedIpAddr
Source§fn eq(&self, other: &ReducedIpAddr) -> bool
fn eq(&self, other: &ReducedIpAddr) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReducedIpAddr
Auto Trait Implementations§
impl Freeze for ReducedIpAddr
impl RefUnwindSafe for ReducedIpAddr
impl Send for ReducedIpAddr
impl Sync for ReducedIpAddr
impl Unpin for ReducedIpAddr
impl UnsafeUnpin for ReducedIpAddr
impl UnwindSafe for ReducedIpAddr
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