[][src]Struct livesplit_core::timing::formatter::timer::Fraction

pub struct Fraction { /* fields omitted */ }

The Time Formatter that visualizes the fractional part of the Time Formatter Pair for the Timer Component. This Time Formatter shows only the fractional part of the time and uses as many digits for it as you want. By default 2 digits of the fractional part are shown.

Example Formatting

  • Empty Time .00
  • No Fractional Part
  • Tenths .1
  • Hundredths .12

Methods

impl Fraction[src]

pub fn new() -> Self[src]

Creates a new default Time Formatter that uses hundredths for showing the fractional part.

pub fn with_accuracy(accuracy: Accuracy) -> Self[src]

Creates a new Time Formatter that uses the accuracy provided for showing the fractional part.

Trait Implementations

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

type Inner = FractionInner

The actual type that can be displayed.

impl Default for Fraction[src]

Auto Trait Implementations

impl Send for Fraction

impl Sync for Fraction

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.