pub struct ActiveMatchDB {
pub uuid: String,
pub game: String,
pub mode: String,
pub ai: bool,
pub server_pub: String,
pub server_priv: String,
pub region: String,
pub read: String,
pub player_write: HashMap<String, String>,
pub chat_id: String,
}Fields§
§uuid: String§game: String§mode: String§ai: bool§server_pub: String§server_priv: String§region: String§read: String§player_write: HashMap<String, String>§chat_id: StringTrait Implementations§
Source§impl Clone for ActiveMatchDB
impl Clone for ActiveMatchDB
Source§fn clone(&self) -> ActiveMatchDB
fn clone(&self) -> ActiveMatchDB
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 ActiveMatchDB
impl Debug for ActiveMatchDB
Source§impl RedisIdentifiable for ActiveMatchDB
impl RedisIdentifiable for ActiveMatchDB
Source§impl RedisOutputReader for ActiveMatchDB
impl RedisOutputReader for ActiveMatchDB
Auto Trait Implementations§
impl Freeze for ActiveMatchDB
impl RefUnwindSafe for ActiveMatchDB
impl Send for ActiveMatchDB
impl Sync for ActiveMatchDB
impl Unpin for ActiveMatchDB
impl UnwindSafe for ActiveMatchDB
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