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

pub struct State {
    pub time: Option<i64>,
    pub state: Option<String>,
    pub service: Option<String>,
    pub host: Option<String>,
    pub description: Option<String>,
    pub once: Option<bool>,
    pub tags: Vec<String>,
    pub ttl: Option<f32>,
}

Deprecated; state was used by early versions of the protocol, but not any more.

Fields

time: Option<i64>state: Option<String>service: Option<String>host: Option<String>description: Option<String>once: Option<bool>tags: Vec<String>ttl: Option<f32>

Implementations

impl State[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 once(&self) -> bool[src]

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

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

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

Trait Implementations

impl Clone for State[src]

impl Debug for State[src]

impl Default for State[src]

impl Message for State[src]

impl PartialEq<State> for State[src]

impl StructuralPartialEq for State[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.