[][src]Struct rustmann::protos::riemann::Event

pub struct Event {
    pub time: Option<i64>,
    pub state: Option<String>,
    pub service: Option<String>,
    pub host: Option<String>,
    pub description: Option<String>,
    pub tags: Vec<String>,
    pub ttl: Option<f32>,
    pub attributes: Vec<Attribute>,
    pub time_micros: Option<i64>,
    pub metric_sint64: Option<i64>,
    pub metric_d: Option<f64>,
    pub metric_f: Option<f32>,
}

Fields

time: Option<i64>state: Option<String>service: Option<String>host: Option<String>description: Option<String>tags: Vec<String>ttl: Option<f32>attributes: Vec<Attribute>time_micros: Option<i64>metric_sint64: Option<i64>metric_d: Option<f64>metric_f: Option<f32>

Implementations

impl Event[src]

pub fn time(&self) -> i64[src]

Returns the value of time, or the default value if time is unset.

pub fn state(&self) -> &str[src]

Returns the value of state, or the default value if state is unset.

pub fn service(&self) -> &str[src]

Returns the value of service, or the default value if service is unset.

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

Returns the value of host, or the default value if host is unset.

pub fn description(&self) -> &str[src]

Returns the value of description, or the default value if description is unset.

pub fn ttl(&self) -> f32[src]

Returns the value of ttl, or the default value if ttl is unset.

pub fn time_micros(&self) -> i64[src]

Returns the value of time_micros, or the default value if time_micros is unset.

pub fn metric_sint64(&self) -> i64[src]

Returns the value of metric_sint64, or the default value if metric_sint64 is unset.

pub fn metric_d(&self) -> f64[src]

Returns the value of metric_d, or the default value if metric_d is unset.

pub fn metric_f(&self) -> f32[src]

Returns the value of metric_f, or the default value if metric_f is unset.

Trait Implementations

impl Clone for Event[src]

impl Debug for Event[src]

impl Default for Event[src]

impl Message for Event[src]

impl PartialEq<Event> for Event[src]

impl StructuralPartialEq for Event[src]

Auto Trait Implementations

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.