[][src]Struct livesplit_core::timing::formatter::Complete

pub struct Complete;

The Complete Time Formatter formats Time Spans in a way that preserves as much information as possible. The hours and minutes are always shown and a fractional part of 7 digits is used. If there's >24h, then a day prefix is attached (with the hours wrapping around to 0): dd.hh:mm:ss.fffffff

This formatter uses an ASCII minus for negative times and shows a zero time for empty times.

Example Formatting

  • Empty Time 00:00:00.0000000
  • Seconds 00:00:23.1234000
  • Minutes 00:12:34.9876543
  • Hours 12:34:56.1234567
  • Negative Times -12:34:56.1234567
  • Days 89.12:34:56.1234567

Methods

impl Complete[src]

pub fn new() -> Self[src]

Creates a new Complete Time Formatter.

Trait Implementations

impl<'a> TimeFormatter<'a> for Complete[src]

type Inner = Inner

The actual type that can be displayed.

impl Default for Complete[src]

Auto Trait Implementations

impl Send for Complete

impl Sync for Complete

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.