[][src]Struct pomodoro::StateTracker

pub struct StateTracker { /* fields omitted */ }

A simple state tracker that keeps track of the pomodoro state, the current order we are in (1 to 4 or None if we haven't begun our first pomodoro yet), and when the current pomodoro was started at. (Started at is None between pomodoros).

Methods

impl StateTracker[src]

pub fn new() -> StateTracker[src]

pub fn get_order(&self) -> Option<i32>[src]

Gets the current order we are at within a pomdoro cycle (4 pomodoros per cycle).

pub fn set_work_state(&mut self)[src]

Sets the current work state by storing the current time, setting our pomodoro state to PomodoroState::Working, and then incrementing the cycle by one.

pub fn set_break_state(&mut self)[src]

Sets the break state (ShortBreak, LongBreak, or None).

Trait Implementations

impl Debug for StateTracker[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]