pub struct Searcher {
pub player_id: String,
pub elo: u32,
pub mode: String,
pub ai: Option<String>,
pub game: String,
pub region: String,
pub min_players: u32,
pub max_players: u32,
pub wait_start: SystemTime,
}Fields§
§player_id: String§elo: u32§mode: String§ai: Option<String>§game: String§region: String§min_players: u32§max_players: u32§wait_start: SystemTimeTrait Implementations§
Source§impl From<Searcher> for SearcherUpdate
impl From<Searcher> for SearcherUpdate
Source§impl RedisExpireable for Searcher
impl RedisExpireable for Searcher
Source§impl RedisIdentifiable for Searcher
impl RedisIdentifiable for Searcher
Source§impl RedisInsertWriter for Searcher
impl RedisInsertWriter for Searcher
Auto Trait Implementations§
impl Freeze for Searcher
impl RefUnwindSafe for Searcher
impl Send for Searcher
impl Sync for Searcher
impl Unpin for Searcher
impl UnwindSafe for Searcher
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