Struct elma::Time [] [src]

pub struct Time(pub i32);

Wrapper for time in hundredths. Supports add/sub ops.

Examples

let time_x = Time(100); // 1 second
let time_y = Time::from("00:00,01"); // 1 hundredth

assert_eq!(Time::from("0..,0:099"), time_x - time_y); // from string impl allows somewhat malformed input
assert_eq!("01:20,00", Time(8000).to_string()); // .to_string() pretty prints in 00:00,00 format

Methods

impl Time
[src]

[src]

Returns a tuple with hours, mins, secs, hundredths.

Trait Implementations

impl Debug for Time
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for Time
[src]

[src]

Returns the "default value" for a type. Read more

impl Copy for Time
[src]

impl Clone for Time
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Time
[src]

impl PartialEq for Time
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Ord for Time
[src]

[src]

This method returns an Ordering between self and other. Read more

1.21.0
[src]

Compares and returns the maximum of two values. Read more

1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for Time
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

[src]

This method tests less than (for self and other) and is used by the < operator. Read more

[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl From<i32> for Time
[src]

[src]

Performs the conversion.

impl<'a> From<&'a str> for Time
[src]

[src]

Performs the conversion.

impl Add for Time
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

impl Sub for Time
[src]

The resulting type after applying the - operator.

[src]

Performs the - operation.

impl From<Time> for i32
[src]

[src]

Performs the conversion.

impl Display for Time
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Time

impl Sync for Time