Trait glean::traits::Boolean[][src]

pub trait Boolean {
    pub fn set(&self, value: bool);
pub fn test_get_value<'a, S>(&self, ping_name: S) -> Option<bool>
    where
        S: Into<Option<&'a str>>
; }

A description for the BooleanMetric type.

When changing this trait, make sure all the operations are implemented in the related type in ../metrics/.

Required methods

pub fn set(&self, value: bool)[src]

Sets to the specified boolean value.

Arguments

  • value - the value to set.

pub fn test_get_value<'a, S>(&self, ping_name: S) -> Option<bool> where
    S: Into<Option<&'a str>>, 
[src]

Exported for test purposes.

Gets the currently stored value as a boolean.

This doesn't clear the stored value.

Arguments

  • ping_name - represents the optional name of the ping to retrieve the metric for. Defaults to the first value in send_in_pings.
Loading content...

Implementors

impl Boolean for BooleanMetric[src]

Loading content...