[][src]Struct multiaddr::Multiaddr

pub struct Multiaddr { /* fields omitted */ }

Representation of a Multiaddr.

Methods

impl Multiaddr
[src]

pub fn into_bytes(self) -> Vec<u8>
[src]

Returns the raw bytes representation of the multiaddr.

pub fn to_bytes(&self) -> Vec<u8>
[src]

Return a copy to disallow changing the bytes directly

pub fn from_bytes(bytes: Vec<u8>) -> Result<Multiaddr>
[src]

Produces a Multiaddr from its bytes representation.

pub fn as_slice(&self) -> &[u8]
[src]

Extracts a slice containing the entire underlying vector.

pub fn protocol(&self) -> Vec<Protocol>
[src]

Deprecated:

Use self.iter().map(|addr| addr.protocol_id()) instead

Return a list of protocols

Examples

A single protocol

use multiaddr::{Multiaddr, Protocol};

let address: Multiaddr = "/ip4/127.0.0.1".parse().unwrap();
assert_eq!(address.protocol(), vec![Protocol::IP4]);

pub fn encapsulate<T: ToMultiaddr>(&self, input: T) -> Result<Multiaddr>
[src]

Wrap a given Multiaddr and return the combination.

Examples

use multiaddr::Multiaddr;

let address: Multiaddr = "/ip4/127.0.0.1".parse().unwrap();
let nested = address.encapsulate("/udt").unwrap();
assert_eq!(nested, "/ip4/127.0.0.1/udt".parse().unwrap());

pub fn append(&mut self, component: AddrComponent)
[src]

Adds an already-parsed address component to the end of this multiaddr.

Examples

use multiaddr::{Multiaddr, AddrComponent};

let mut address: Multiaddr = "/ip4/127.0.0.1".parse().unwrap();
address.append(AddrComponent::TCP(10000));
assert_eq!(address, "/ip4/127.0.0.1/tcp/10000".parse().unwrap());

pub fn decapsulate<T: ToMultiaddr>(&self, input: T) -> Result<Multiaddr>
[src]

Remove the outermost address.

Examples

use multiaddr::{Multiaddr, ToMultiaddr};

let address: Multiaddr = "/ip4/127.0.0.1/udt/sctp/5678".parse().unwrap();
let unwrapped = address.decapsulate("/udt").unwrap();
assert_eq!(unwrapped, "/ip4/127.0.0.1".parse().unwrap());

assert_eq!(
    address.decapsulate("/udt").unwrap(),
    "/ip4/127.0.0.1".to_multiaddr().unwrap()
);

Returns the original if the passed in address is not found

use multiaddr::ToMultiaddr;

let address = "/ip4/127.0.0.1/udt/sctp/5678".to_multiaddr().unwrap();
let unwrapped = address.decapsulate("/ip4/127.0.1.1").unwrap();
assert_eq!(unwrapped, address);

Important traits for Iter<'a>
pub fn iter(&self) -> Iter
[src]

Returns the components of this multiaddress.

use std::net::Ipv4Addr;
use multiaddr::AddrComponent;
use multiaddr::Multiaddr;

let address: Multiaddr = "/ip4/127.0.0.1/udt/sctp/5678".parse().unwrap();

let components = address.iter().collect::<Vec<_>>();
assert_eq!(components[0], AddrComponent::IP4(Ipv4Addr::new(127, 0, 0, 1)));
assert_eq!(components[1], AddrComponent::UDT);
assert_eq!(components[2], AddrComponent::SCTP(5678));

pub fn pop(&mut self) -> Option<AddrComponent>
[src]

Pops the last AddrComponent of this multiaddr, or None if the multiaddr is empty.

use multiaddr::AddrComponent;
use multiaddr::Multiaddr;

let mut address: Multiaddr = "/ip4/127.0.0.1/udt/sctp/5678".parse().unwrap();

assert_eq!(address.pop().unwrap(), AddrComponent::SCTP(5678));
assert_eq!(address.pop().unwrap(), AddrComponent::UDT);

Trait Implementations

impl ToMultiaddr for Multiaddr
[src]

impl From<AddrComponent> for Multiaddr
[src]

impl<'a> IntoIterator for &'a Multiaddr
[src]

type Item = AddrComponent

The type of the elements being iterated over.

type IntoIter = Iter<'a>

Which kind of iterator are we turning this into?

impl Eq for Multiaddr
[src]

impl PartialEq<Multiaddr> for Multiaddr
[src]

impl Clone for Multiaddr
[src]

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

Performs copy-assignment from source. Read more

impl Debug for Multiaddr
[src]

impl Display for Multiaddr
[src]

fn fmt(&self, f: &mut Formatter) -> Result
[src]

Convert a Multiaddr to a string

Examples

use multiaddr::Multiaddr;

let address: Multiaddr = "/ip4/127.0.0.1/udt".parse().unwrap();
assert_eq!(address.to_string(), "/ip4/127.0.0.1/udt");

impl Hash for Multiaddr
[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

impl FromIterator<AddrComponent> for Multiaddr
[src]

impl FromStr for Multiaddr
[src]

type Err = Error

The associated error which can be returned from parsing.

Auto Trait Implementations

impl Send for Multiaddr

impl Sync for Multiaddr

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self