[][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]

impl From<Endpoint> for Builder[src]

impl Debug for Endpoint[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,