[][src]Struct libzmq::UdpAddr

pub struct UdpAddr { /* fields omitted */ }

A socket address with the UDP transport.

Supported Sockets

[Dish], [Radio]

Example

use libzmq::{prelude::TryInto, UdpAddr};

// Multicast - UDP port 5555 on a Multicast address
let addr: UdpAddr = "239.0.0.1:5555".try_into()?;

// Same as above using IPv6 with joining only on interface eth0.
let addr: UdpAddr = "eth0;[ff02::1]:5555".try_into()?;

Methods

impl UdpAddr[src]

pub fn new<H>(host: H) -> Self where
    H: Into<SocketAddr>, 
[src]

Example

use libzmq::{prelude::TryInto, UdpAddr, addr::SocketAddr};

let host: SocketAddr = "localhost:5555".try_into()?;
// We can use a reference here which will allocate.
let udp = UdpAddr::new(&host);
// We can also give ownership which does not allocate.
let udp = UdpAddr::new(host);

pub fn add_src<S>(self, src: S) -> Self where
    S: Into<SrcAddr>, 
[src]

Example

use libzmq::{prelude::TryInto, UdpAddr, addr::{SrcAddr, SocketAddr}};

let host: SocketAddr = "localhost:5555".try_into()?;
let src: SrcAddr = "eth0".try_into()?;

// We pass by reference which allocates, but we could
// also give the ownership directly.
let udp = UdpAddr::new(&host).add_src(&src);

// Note that `SocketAddr` implement `Into<SrcAddr>`,
// so this is also valid.
let udp = UdpAddr::new(&host).add_src(&host);

pub fn host(&self) -> &SocketAddr[src]

pub fn src(&self) -> Option<&SrcAddr>[src]

Trait Implementations

impl Eq for UdpAddr[src]

impl PartialEq<UdpAddr> for UdpAddr[src]

impl Clone for UdpAddr[src]

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

Performs copy-assignment from source. Read more

impl From<SocketAddr> for UdpAddr[src]

impl From<UdpAddr> for Endpoint[src]

impl<'a> From<&'a UdpAddr> for Endpoint[src]

impl IntoIterator for UdpAddr[src]

type Item = Self

The type of the elements being iterated over.

type IntoIter = IntoIter<Self>

Which kind of iterator are we turning this into?

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

type Item = Self

The type of the elements being iterated over.

type IntoIter = IntoIter<Self>

Which kind of iterator are we turning this into?

impl Debug for UdpAddr[src]

impl Display for UdpAddr[src]

impl Hash for UdpAddr[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 FromStr for UdpAddr[src]

type Err = AddrParseError

The associated error which can be returned from parsing.

impl TryFrom<String> for UdpAddr[src]

type Error = AddrParseError

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a String> for UdpAddr[src]

type Error = AddrParseError

The type returned in the event of a conversion error.

impl<'a> TryFrom<&'a str> for UdpAddr[src]

type Error = AddrParseError

The type returned in the event of a conversion error.

impl Serialize for UdpAddr[src]

impl<'de> Deserialize<'de> for UdpAddr[src]

Auto Trait Implementations

impl Send for UdpAddr

impl Sync for UdpAddr

Blanket Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]