[][src]Enum retrosheet::event::AdvanceParameter

pub enum AdvanceParameter {
    ThrowingError(FielderOption<Base>),
    FieldingPlay(Vec<FieldParameter>),
    UnearnedRun,
    TeamUnearnedRun,
    RBI,
    Interference(Fielder),
    NoRBI,
    WithThrow,
}

Information about a runner's attempt to advance.

Variants

ThrowingError(FielderOption<Base>)

A throwing error, possibly with the base it was thrown to.

FieldingPlay(Vec<FieldParameter>)

A fielding play.

UnearnedRun

A run was unearned (due to player error).

TeamUnearnedRun

A team unearned run occurred.

RBI

An RBI was given.

Interference(Fielder)

Interference by a fielder.

NoRBI

No RBI was given.

WithThrow

The runner advanced, and there actually was a throw.

Trait Implementations

impl Clone for AdvanceParameter[src]

impl Eq for AdvanceParameter[src]

impl PartialEq<AdvanceParameter> for AdvanceParameter[src]

impl Debug for AdvanceParameter[src]

impl Hash for AdvanceParameter[src]

impl StructuralPartialEq for AdvanceParameter[src]

impl StructuralEq for AdvanceParameter[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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]