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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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
impl Copy for ReducedIpAddr
impl Eq for ReducedIpAddr
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 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