pub trait Peekable<V> {
    fn peek(&self) -> V;
}
Expand description

Trait for picking the very last value for methods and indicators

Required methods

Peeks the very last value, produced by method or indicator

Implementations on Foreign Types

Implementors