[][src]Struct sticker_utils::TaggerSpeed

pub struct TaggerSpeed { /* fields omitted */ }

Measure the number of sentences processed per second.

When an instance of TaggerSpeed is constructed, it takes the current time. count_sentence should be called for each sentence that was processed. A TaggerSpeed instance will print the processing speed to stderr when the instance is dropped.

Methods

impl TaggerSpeed[src]

pub fn new() -> Self[src]

Construct a new instance.

pub fn count_sentence(&mut self)[src]

Count a processed sentences.

Trait Implementations

impl Default for TaggerSpeed[src]

impl Drop for TaggerSpeed[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]