[][src]Struct prometrics::timestamp::TimestampMut

pub struct TimestampMut<'a>(_);

Mutable variant of Timestamp.

Methods

impl<'a> TimestampMut<'a>[src]

pub fn set(&mut self, timestamp: i64)[src]

Sets the value of this timestamp to timestamp.

pub fn set_now(&mut self)[src]

Sets the value of this timestamp to the current unixtime in milliseconds.

pub fn set_time(&mut self, time: SystemTime)[src]

Sets the value of this timestamp to time.

pub fn clear(&mut self)[src]

Clears the value of this timestamp.

Methods from Deref<Target = Timestamp>

pub fn get(&self) -> Option<i64>[src]

Returns the value of this timestamp.

Trait Implementations

impl<'a> Debug for TimestampMut<'a>[src]

impl<'a> Deref for TimestampMut<'a>[src]

type Target = Timestamp

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a> RefUnwindSafe for TimestampMut<'a>

impl<'a> Send for TimestampMut<'a>

impl<'a> Sync for TimestampMut<'a>

impl<'a> Unpin for TimestampMut<'a>

impl<'a> UnwindSafe for TimestampMut<'a>

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.