[][src]Struct zipkin::Endpoint

pub struct Endpoint { /* fields omitted */ }

The network context of a node in the service graph.

Methods

impl Endpoint
[src]

pub fn builder() -> Builder
[src]

Returns a builder type used to construct an Endpoint.

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

Returns the name of the service at this endpoint.

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

Returns the IPv4 address of the service at this endpoint.

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

Returns the IPv6 address of the service at this endpoint.

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

Returns the port of the service at this endpoint.

Trait Implementations

impl Clone for Endpoint
[src]

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

Performs copy-assignment from source. Read more

impl Debug for Endpoint
[src]

impl From<Endpoint> for Builder
[src]

Auto Trait Implementations

impl Send for Endpoint

impl Sync for Endpoint

Blanket Implementations

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> From for T
[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> Any for T where
    T: 'static + ?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> BorrowMut for T where
    T: ?Sized
[src]

impl<T> UnsafeAny for T where
    T: Any