[][src]Struct pomodoro::Clock

pub struct Clock { /* fields omitted */ }

A simple clock struct that displays minutes and seconds, and has methods for drawing a nice border around the current dispalyed time.

Methods

impl Clock[src]

pub fn new() -> Clock[src]

Instantiates a new clock at 00:00.

pub fn set_time_ms(&mut self, ms: u64)[src]

Sets clock time in absolute milliseconds.

pub fn set_time_minutes(&mut self, minutes: u64)[src]

Sets clock time in absolute minutes.

pub fn decrement_one_second(&mut self)[src]

Decrements the clock by one full second.

pub fn get_ms_from_time(&mut self) -> u64[src]

Translate the current clock time back into milliseconds

pub fn get_time(&self) -> String[src]

Translates the clock struct into a human readable string.

Example

let mut clock = pomodoro::Clock::new();

clock.set_time_minutes(5);

assert_eq!(clock.get_time(), "05:00".to_string());

pub fn gen_clock(&self, message: &str) -> String[src]

Given a message ("Get to Work", or "Time to Chill") this will generate a nicely displayed clock with the message added.

Auto Trait Implementations

impl Send for Clock

impl Sync for Clock

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]