pub struct SearcherUpdate {
pub player_id: Option<String>,
pub elo: Option<u32>,
pub mode: Option<String>,
pub ai: Option<Option<String>>,
pub game: Option<String>,
pub region: Option<String>,
pub wait_start: Option<SystemTime>,
}Fields§
§player_id: Option<String>§elo: Option<u32>§mode: Option<String>§ai: Option<Option<String>>§game: Option<String>§region: Option<String>§wait_start: Option<SystemTime>Trait Implementations§
Source§impl Clone for SearcherUpdate
impl Clone for SearcherUpdate
Source§fn clone(&self) -> SearcherUpdate
fn clone(&self) -> SearcherUpdate
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 SearcherUpdate
impl Debug for SearcherUpdate
Source§impl From<Searcher> for SearcherUpdate
impl From<Searcher> for SearcherUpdate
Auto Trait Implementations§
impl Freeze for SearcherUpdate
impl RefUnwindSafe for SearcherUpdate
impl Send for SearcherUpdate
impl Sync for SearcherUpdate
impl Unpin for SearcherUpdate
impl UnwindSafe for SearcherUpdate
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