pub struct BookmakerMarkets {
pub key: String,
pub title: String,
pub markets: Vec<MarketInfo>,
}Expand description
Bookmaker with available markets (without odds).
Fields§
§key: StringUnique key for the bookmaker.
title: StringHuman-readable bookmaker title.
markets: Vec<MarketInfo>List of available markets.
Trait Implementations§
Source§impl Clone for BookmakerMarkets
impl Clone for BookmakerMarkets
Source§fn clone(&self) -> BookmakerMarkets
fn clone(&self) -> BookmakerMarkets
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BookmakerMarkets
impl Debug for BookmakerMarkets
Source§impl<'de> Deserialize<'de> for BookmakerMarkets
impl<'de> Deserialize<'de> for BookmakerMarkets
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 BookmakerMarkets
impl RefUnwindSafe for BookmakerMarkets
impl Send for BookmakerMarkets
impl Sync for BookmakerMarkets
impl Unpin for BookmakerMarkets
impl UnsafeUnpin for BookmakerMarkets
impl UnwindSafe for BookmakerMarkets
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