[][src]Struct metrix::instruments::switches::StaircaseTimer

pub struct StaircaseTimer { /* fields omitted */ }

A StaircaseTimer is 'tapped' by an Observation and then stays on for some time.

The StaircaseTimer works exactly like a switch in a staircase: You press the switch and the light will stay on for some time. Here it is an Observation that pushes the switch and the light is a boolean that will be set to true for some time. When triggered while already on, the time being true will be prolonged.

The state written to a Snapshot can be inverted.

Methods

impl StaircaseTimer[src]

pub fn new_with_defaults<T: Into<String>>(name: T) -> StaircaseTimer[src]

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

Gets the name of this Gauge

pub fn set_name<T: Into<String>>(&mut self, name: T)[src]

Set the name if this Gauge.

The name is a path segment within a Snapshot

pub fn set_title<T: Into<String>>(&mut self, title: T)[src]

Sets the title of this Gauge.

A title can be part of a descriptive Snapshot

pub fn set_description<T: Into<String>>(&mut self, description: T)[src]

Sets the description of this Gauge.

A description can be part of a descriptive Snapshot

pub fn set_invert(&mut self, invert: bool)[src]

Set whether the current value should be inverted in a snapshot or not

Default is false

pub fn enable_invert(&mut self)[src]

The current value should be inverted in a snapshot

Same as self.set_invert(true);

pub fn invert(&self) -> bool[src]

return whether invert is on or off

pub fn set_switch_off_after(&mut self, d: Duration)[src]

Sets duration after which the internal state switches back to false

Default is 60 seconds

pub fn switch_off_after(&self) -> Duration[src]

Gets duration after which the internal state switches back to false

pub fn show_inverted(&mut self, name_alternation: NameAlternation)[src]

Show the inverted value. Name will be adjusted with name_alternation.

pub fn show_inverted_prefixed<T: Into<String>>(&mut self, prefix: T)[src]

Show the inverted value. Name will be prefixed with prefix.

pub fn show_inverted_postfixed<T: Into<String>>(&mut self, postfix: T)[src]

Show the inverted value. Name will be postfixed with postfix.

pub fn show_inverted_renamed<T: Into<String>>(&mut self, new_name: T)[src]

Show the inverted value. Name will be renamed with new_name.

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

Returns the current state

Trait Implementations

impl Updates for StaircaseTimer[src]

impl Instrument for StaircaseTimer[src]

impl Descriptive for StaircaseTimer[src]

impl PutsSnapshot for StaircaseTimer[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,