pub struct DBSearcher {
pub uuid: String,
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§
§uuid: String§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 Clone for DBSearcher
impl Clone for DBSearcher
Source§fn clone(&self) -> DBSearcher
fn clone(&self) -> DBSearcher
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 DBSearcher
impl Debug for DBSearcher
Source§impl RedisIdentifiable for DBSearcher
impl RedisIdentifiable for DBSearcher
Source§impl RedisOutputReader for DBSearcher
impl RedisOutputReader for DBSearcher
Auto Trait Implementations§
impl Freeze for DBSearcher
impl RefUnwindSafe for DBSearcher
impl Send for DBSearcher
impl Sync for DBSearcher
impl Unpin for DBSearcher
impl UnwindSafe for DBSearcher
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