[][src]Enum livesplit_core::component::splits::ColumnUpdateWith

pub enum ColumnUpdateWith {
    DontUpdate,
    SplitTime,
    Delta,
    DeltaWithFallback,
    SegmentTime,
    SegmentDelta,
    SegmentDeltaWithFallback,
}

Once a certain condition is met, which is usually being on the split or already having completed the split, the time gets updated with the value specified here.

Variants

DontUpdate

The value doesn't get updated and stays on the value it started out with.

SplitTime

The value gets replaced by the current attempt's split time.

Delta

The value gets replaced by the delta of the current attempt's and the comparison's split time.

DeltaWithFallback

The value gets replaced by the delta of the current attempt's and the comparison's split time. If there is no delta, the value gets replaced by the current attempt's split time instead.

SegmentTime

The value gets replaced by the current attempt's segment time.

SegmentDelta

The value gets replaced by the current attempt's time saved or lost, which is how much faster or slower the current attempt's segment time is compared to the comparison's segment time. This matches the Previous Segment component.

SegmentDeltaWithFallback

The value gets replaced by the current attempt's time saved or lost, which is how much faster or slower the current attempt's segment time is compared to the comparison's segment time. This matches the Previous Segment component. If there is no time saved or lost, then value gets replaced by the current attempt's segment time instead.

Trait Implementations

impl From<ColumnUpdateWith> for Value[src]

impl Into<ColumnUpdateWith> for Value[src]

impl Copy for ColumnUpdateWith[src]

impl PartialEq<ColumnUpdateWith> for ColumnUpdateWith[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Clone for ColumnUpdateWith[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Serialize for ColumnUpdateWith[src]

impl<'de> Deserialize<'de> for ColumnUpdateWith[src]

Auto Trait Implementations

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[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.