pub enum InetTarget {
V4(Ipv4Target),
V6(Ipv6Target),
}Variants§
V4(Ipv4Target)
V6(Ipv6Target)
Implementations§
Trait Implementations§
Source§impl Clone for InetTarget
impl Clone for InetTarget
Source§fn clone(&self) -> InetTarget
fn clone(&self) -> InetTarget
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 Debug for InetTarget
impl Debug for InetTarget
Source§impl Display for InetTarget
impl Display for InetTarget
Source§impl FromStr for InetTarget
impl FromStr for InetTarget
Source§impl Hash for InetTarget
impl Hash for InetTarget
Source§impl PartialEq for InetTarget
impl PartialEq for InetTarget
impl Copy for InetTarget
impl Eq for InetTarget
impl StructuralPartialEq for InetTarget
Auto Trait Implementations§
impl Freeze for InetTarget
impl RefUnwindSafe for InetTarget
impl Send for InetTarget
impl Sync for InetTarget
impl Unpin for InetTarget
impl UnwindSafe for InetTarget
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