pub struct HittingStat {Show 32 fields
pub games_played: u16,
pub ground_outs: u16,
pub air_outs: u16,
pub runs: u16,
pub doubles: u16,
pub triples: u16,
pub home_runs: u16,
pub strike_outs: u16,
pub base_on_balls: u16,
pub intentional_walks: u16,
pub hits: u16,
pub hit_by_pitch: u16,
pub avg: String,
pub at_bats: u16,
pub obp: String,
pub slg: String,
pub ops: String,
pub caught_stealing: u16,
pub stolen_bases: u16,
pub stolen_base_percentage: String,
pub ground_into_double_play: u16,
pub number_of_pitches: u16,
pub plate_appearances: u16,
pub total_bases: u16,
pub rbi: u16,
pub left_on_base: u16,
pub sac_bunts: u16,
pub sac_flies: u16,
pub babip: String,
pub ground_outs_to_airouts: String,
pub catchers_interference: Option<u16>,
pub at_bats_per_home_run: String,
}Fields§
§games_played: u16§ground_outs: u16§air_outs: u16§runs: u16§doubles: u16§triples: u16§home_runs: u16§strike_outs: u16§base_on_balls: u16§intentional_walks: u16§hits: u16§hit_by_pitch: u16§avg: String§at_bats: u16§obp: String§slg: String§ops: String§caught_stealing: u16§stolen_bases: u16§stolen_base_percentage: String§ground_into_double_play: u16§number_of_pitches: u16§plate_appearances: u16§total_bases: u16§rbi: u16§left_on_base: u16§sac_bunts: u16§sac_flies: u16§babip: String§ground_outs_to_airouts: String§catchers_interference: Option<u16>§at_bats_per_home_run: StringTrait Implementations§
Source§impl Debug for HittingStat
impl Debug for HittingStat
Source§impl Default for HittingStat
impl Default for HittingStat
Source§fn default() -> HittingStat
fn default() -> HittingStat
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HittingStat
impl<'de> Deserialize<'de> for HittingStat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HittingStat
impl RefUnwindSafe for HittingStat
impl Send for HittingStat
impl Sync for HittingStat
impl Unpin for HittingStat
impl UnsafeUnpin for HittingStat
impl UnwindSafe for HittingStat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more