[][src]Struct dipstick::Graphite

pub struct Graphite { /* fields omitted */ }

Graphite output holds a socket to a graphite server. The socket is shared between scopes opened from the output.

Methods

impl Graphite[src]

pub fn send_to<A: ToSocketAddrs + Debug + Clone>(address: A) -> Result<Graphite>[src]

Send metrics to a graphite server at the address and port provided.

Trait Implementations

impl Buffered for Graphite[src]

impl CachedOutput for Graphite[src]

impl Clone for Graphite[src]

impl Debug for Graphite[src]

impl Output for Graphite[src]

type SCOPE = GraphiteScope

The type of Scope returned byt this output.

impl QueuedOutput for Graphite[src]

Auto Trait Implementations

impl !RefUnwindSafe for Graphite

impl Send for Graphite

impl Sync for Graphite

impl Unpin for Graphite

impl !UnwindSafe for Graphite

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> 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.