[][src]Struct senstate::Watcher

pub struct Watcher { /* fields omitted */ }

A watcher represents the status of a single value. It is bound to a specific type of value and can update that state at any time.

Methods

impl Watcher[src]

pub fn send_string<T>(&self, data: T) where
    T: Into<String>, 
[src]

Update the string value of this watcher. This method should only be used if the watcher type is String.

pub fn send_number<T>(&self, data: T) where
    T: Num + Serialize
[src]

Update the number (integer, float, ...) value of this watcher. This method should only be used if the watcher type is Number.

pub fn send_json<T>(&self, data: T) where
    T: Serialize
[src]

Update the JSON value of this watcher. This method should only be used if the watcher type is Json.

pub fn send_performance<T>(&self, data: T) where
    T: Num + Serialize
[src]

Update the performance value (same as send_number currently) of this watcher. This method should only be used if the watcher type is Performance.

pub fn log<T>(&self, log: T) where
    T: Serialize
[src]

Send a log message to Senstate. This can be any data that is serializable.

Trait Implementations

impl Clone for Watcher[src]

impl Debug for Watcher[src]

Auto Trait Implementations

impl Send for Watcher

impl !Sync for Watcher

impl Unpin for Watcher

impl !UnwindSafe for Watcher

impl !RefUnwindSafe for Watcher

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<T> Same<T> for T

type Output = T

Should always be Self