[][src]Struct retrosheet::Game

pub struct Game {
    pub id: String,
    pub info: HashMap<Info, String>,
    pub starters: HashSet<Player>,
    pub plays: Vec<(Event, Vec<Event>)>,
    pub substitutions: Vec<Substitution>,
    pub data: Vec<Event>,
    // some fields omitted
}

An MLB game.

Fields

id: String

The game id.

info: HashMap<Info, String>

Metadata information about the game.

starters: HashSet<Player>

The players that started the game.

plays: Vec<(Event, Vec<Event>)>

The sequence of plays that occurred in the game, along with comments, if they exist.

substitutions: Vec<Substitution>

The set of substitutions that happened during the game. This can be used to construct a full list of who was playing during what parts of the game.

data: Vec<Event>

The set of data events that were recorded after play-by-play information.

Methods

impl Game[src]

pub fn new<S: Into<String>>(id: S) -> Game[src]

Instantiate a new game object in the initial state.

pub fn finish(&mut self) -> Result<(), Error>[src]

Attempt to complete parsing. Only allowed in the data state.

pub fn process_event(&mut self, event: Event) -> Result<(), Error>[src]

Process an event in the context of the game.

Trait Implementations

impl Clone for Game[src]

impl Eq for Game[src]

impl PartialEq<Game> for Game[src]

impl Debug for Game[src]

Auto Trait Implementations

impl Send for Game

impl Sync for Game

impl Unpin for Game

impl UnwindSafe for Game

impl RefUnwindSafe for Game

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]