[][src]Enum bitcoin::network::address::AddrV2

pub enum AddrV2 {
    Ipv4(Ipv4Addr),
    Ipv6(Ipv6Addr),
    TorV2([u8; 10]),
    TorV3([u8; 32]),
    I2p([u8; 32]),
    Cjdns(Ipv6Addr),
    Unknown(u8Vec<u8>),
}

Supported networks for use in BIP155 addrv2 message

Variants

Ipv4(Ipv4Addr)

IPV4

Ipv6(Ipv6Addr)

IPV6

TorV2([u8; 10])

TORV2

TorV3([u8; 32])

TORV3

I2p([u8; 32])

I2P

Cjdns(Ipv6Addr)

CJDNS

Unknown(u8Vec<u8>)

Unknown

Trait Implementations

impl Encodable for AddrV2[src]

impl Decodable for AddrV2[src]

impl Clone for AddrV2[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<AddrV2> for AddrV2[src]

impl Eq for AddrV2[src]

impl Debug for AddrV2[src]

impl Hash for AddrV2[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Unpin for AddrV2

impl Sync for AddrV2

impl Send for AddrV2

impl UnwindSafe for AddrV2

impl RefUnwindSafe for AddrV2

Blanket Implementations

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]