[][src]Struct zipkin::endpoint::Builder

pub struct Builder { /* fields omitted */ }

A builder type for Endpoints.

Methods

impl Builder[src]

pub fn service_name(&mut self, service_name: &str) -> &mut Builder[src]

Sets the service name associated with the endpoint.

Defaults to None.

pub fn ipv4(&mut self, ipv4: Ipv4Addr) -> &mut Builder[src]

Sets the IPv4 address associated with the endpoint.

Defaults to None.

pub fn ipv6(&mut self, ipv6: Ipv6Addr) -> &mut Builder[src]

Sets the IPv6 address associated with the endpoint.

Defaults to None.

pub fn ip(&mut self, ip: IpAddr) -> &mut Builder[src]

Sets the IP address associated with the endpoint.

This is simply a convenience function which delegates to ipv4 and ipv6.

pub fn port(&mut self, port: u16) -> &mut Builder[src]

Sets the port associated with the endpoint.

Defaults to None.

pub fn build(&self) -> Endpoint[src]

Constructs the Endpoint.

Trait Implementations

impl From<Endpoint> for Builder[src]

Auto Trait Implementations

impl RefUnwindSafe for Builder

impl Send for Builder

impl Sync for Builder

impl Unpin for Builder

impl UnwindSafe for Builder

Blanket Implementations

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

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

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

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

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<V, T> VZip<V> for T where
    V: MultiLane<T>,