pub struct Fixture {Show 17 fields
pub code: i64,
pub event: i64,
pub finished: bool,
pub finished_provisional: bool,
pub id: i64,
pub kickoff_time: String,
pub minutes: i64,
pub provisional_start_time: bool,
pub started: bool,
pub team_a: i64,
pub team_a_score: Option<i64>,
pub team_h: i64,
pub team_h_score: Option<i64>,
pub stats: Vec<Stat>,
pub team_h_difficulty: i64,
pub team_a_difficulty: i64,
pub pulse_id: i64,
}Fields§
§code: i64§event: i64§finished: bool§finished_provisional: bool§id: i64§kickoff_time: String§minutes: i64§provisional_start_time: bool§started: bool§team_a: i64§team_a_score: Option<i64>§team_h: i64§team_h_score: Option<i64>§stats: Vec<Stat>§team_h_difficulty: i64§team_a_difficulty: i64§pulse_id: i64Trait Implementations§
Source§impl<'de> Deserialize<'de> for Fixture
impl<'de> Deserialize<'de> for Fixture
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
impl StructuralPartialEq for Fixture
Auto Trait Implementations§
impl Freeze for Fixture
impl RefUnwindSafe for Fixture
impl Send for Fixture
impl Sync for Fixture
impl Unpin for Fixture
impl UnwindSafe for Fixture
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