Struct Ipv6Addr

struct Ipv6Addr(_)

no_std implementation of std::net::Ipv6Addr.

Note: because we intend to replace this type with core::net::Ipv6Addr as soon as it is stabilized, the identity of this type should not be considered semver-stable. However, the attached interfaces are stable; they form a subset of those provided by core::net::Ipv6Addr.

Implementations

impl AsRef for Ipv6Addr

fn as_ref(self: &Self) -> &[u8; 16]

impl Clone for Ipv6Addr

fn clone(self: &Self) -> Ipv6Addr

impl Copy for Ipv6Addr

impl Debug for Ipv6Addr

fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result

impl Eq for Ipv6Addr

impl Freeze for Ipv6Addr

impl From for Ipv6Addr

fn from(addr: Ipv6Addr) -> Self

impl From for Ipv6Addr

fn from(value: [u16; 8]) -> Self

impl Hash for Ipv6Addr

fn hash<__H: $crate::hash::Hasher>(self: &Self, state: &mut __H)

impl PartialEq for Ipv6Addr

fn eq(self: &Self, other: &Ipv6Addr) -> bool

impl RefUnwindSafe for Ipv6Addr

impl Send for Ipv6Addr

impl StructuralPartialEq for Ipv6Addr

impl Sync for Ipv6Addr

impl TryFrom for Ipv6Addr

fn try_from(value: &str) -> Result<Self, <Self as >::Error>

impl Unpin for Ipv6Addr

impl UnwindSafe for Ipv6Addr

impl<T> Any for Ipv6Addr

fn type_id(self: &Self) -> TypeId

impl<T> Borrow for Ipv6Addr

fn borrow(self: &Self) -> &T

impl<T> BorrowMut for Ipv6Addr

fn borrow_mut(self: &mut Self) -> &mut T

impl<T> CloneToUninit for Ipv6Addr

unsafe fn clone_to_uninit(self: &Self, dest: *mut u8)

impl<T> From for Ipv6Addr

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> ToOwned for Ipv6Addr

fn to_owned(self: &Self) -> T
fn clone_into(self: &Self, target: &mut T)

impl<T, U> Into for Ipv6Addr

fn into(self: Self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of [From]<T> for U chooses to do.

impl<T, U> TryFrom for Ipv6Addr

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

impl<T, U> TryInto for Ipv6Addr

fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>