Union AddressStatus
#[repr(C)]pub union AddressStatus {
pub v4: AddressStatusV4,
pub v6: AddressStatusV6,
}Fields§
§v4: AddressStatusV4IPv4 information.
v6: AddressStatusV6IPv6 information.
Trait Implementations§
§impl Clone for AddressStatus
impl Clone for AddressStatus
§fn clone(&self) -> AddressStatus
fn clone(&self) -> AddressStatus
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 moreimpl Copy for AddressStatus
Auto Trait Implementations§
impl Freeze for AddressStatus
impl RefUnwindSafe for AddressStatus
impl Send for AddressStatus
impl Sync for AddressStatus
impl Unpin for AddressStatus
impl UnwindSafe for AddressStatus
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