pub struct OpeningExplorerJson {
pub opening: Option<Opening>,
pub white: u32,
pub draws: u32,
pub black: u32,
pub moves: Vec<Move>,
pub top_games: Option<Vec<Game>>,
pub recent_games: Option<Vec<Game>>,
pub history: Option<Vec<History>>,
pub queue_position: Option<u32>,
}Fields§
§opening: Option<Opening>§white: u32§draws: u32§black: u32§moves: Vec<Move>§top_games: Option<Vec<Game>>§recent_games: Option<Vec<Game>>§history: Option<Vec<History>>§queue_position: Option<u32>Trait Implementations§
Source§impl Clone for OpeningExplorerJson
impl Clone for OpeningExplorerJson
Source§fn clone(&self) -> OpeningExplorerJson
fn clone(&self) -> OpeningExplorerJson
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 OpeningExplorerJson
impl Debug for OpeningExplorerJson
Source§impl<'de> Deserialize<'de> for OpeningExplorerJson
impl<'de> Deserialize<'de> for OpeningExplorerJson
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 OpeningExplorerJson
impl RefUnwindSafe for OpeningExplorerJson
impl Send for OpeningExplorerJson
impl Sync for OpeningExplorerJson
impl Unpin for OpeningExplorerJson
impl UnwindSafe for OpeningExplorerJson
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