[][src]Struct sport_monks::models::PlayerInMatch

pub struct PlayerInMatch {
    pub player_id: i64,
    pub position_id: Option<i64>,
    pub number: Option<i64>,
    pub captain: i64,
    pub injured: bool,
    pub minutes: i64,
    pub appearences: i64,
    pub lineups: i64,
    pub substitute_in: i64,
    pub substitute_out: i64,
    pub substitutes_on_bench: i64,
    pub goals: i64,
    pub assists: i64,
    pub saves: Option<i64>,
    pub inside_box_saves: Option<i64>,
    pub dispossesed: Option<i64>,
    pub interceptions: Option<i64>,
    pub yellowcards: i64,
    pub yellowred: i64,
    pub redcards: i64,
    pub tackles: i64,
    pub blocks: i64,
    pub hit_post: i64,
    pub fouls: FoulsPerPlayer,
    pub crosses: Crosses,
    pub dribbles: DribblesPerPlayer,
    pub duels: Duels,
    pub passes: PassesPerPlayer,
    pub penalties: Penalties,
    pub player: Option<Player>,
}

Fields

player_id: i64position_id: Option<i64>number: Option<i64>captain: i64injured: boolminutes: i64appearences: i64lineups: i64substitute_in: i64substitute_out: i64substitutes_on_bench: i64goals: i64assists: i64saves: Option<i64>inside_box_saves: Option<i64>dispossesed: Option<i64>interceptions: Option<i64>yellowcards: i64yellowred: i64redcards: i64tackles: i64blocks: i64hit_post: i64fouls: FoulsPerPlayercrosses: Crossesdribbles: DribblesPerPlayerduels: Duelspasses: PassesPerPlayerpenalties: Penaltiesplayer: Option<Player>

Trait Implementations

impl PartialEq<PlayerInMatch> for PlayerInMatch[src]

impl Clone for PlayerInMatch[src]

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

Performs copy-assignment from source. Read more

impl Default for PlayerInMatch[src]

impl Debug for PlayerInMatch[src]

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

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err