Struct in6_addr
#[repr(C, align(4))]
pub struct in6_addr { pub s6_addr: [u8; 16] }
Fields
s6_addr: [u8; 16]
Trait Implementations
impl Clone for in6_addr
fn clone(&self) -> in6_addr
impl Copy for in6_addr
impl Debug for in6_addr
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for in6_addr
impl Hash for in6_addr
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for in6_addr
fn eq(&self, other: &in6_addr) -> bool
impl StructuralPartialEq for in6_addr
Auto Trait Implementations
impl Freeze for in6_addr
impl RefUnwindSafe for in6_addr
impl Send for in6_addr
impl Sync for in6_addr
impl Unpin for in6_addr
impl UnsafeUnpin for in6_addr
impl UnwindSafe for in6_addr
Blanket Implementations
impl<T> Any for in6_addr
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for in6_addr
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for in6_addr
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for in6_addr
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for in6_addr
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for in6_addr
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for in6_addr
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for in6_addr
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>