pub struct AIPlayerDB {
pub uuid: String,
pub game: String,
pub mode: String,
pub elo: u32,
pub display_name: String,
}Fields§
§uuid: String§game: String§mode: String§elo: u32§display_name: StringTrait Implementations§
Source§impl Clone for AIPlayerDB
impl Clone for AIPlayerDB
Source§fn clone(&self) -> AIPlayerDB
fn clone(&self) -> AIPlayerDB
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 AIPlayerDB
impl Debug for AIPlayerDB
Source§impl RedisIdentifiable for AIPlayerDB
impl RedisIdentifiable for AIPlayerDB
Source§impl RedisOutputReader for AIPlayerDB
impl RedisOutputReader for AIPlayerDB
Auto Trait Implementations§
impl Freeze for AIPlayerDB
impl RefUnwindSafe for AIPlayerDB
impl Send for AIPlayerDB
impl Sync for AIPlayerDB
impl Unpin for AIPlayerDB
impl UnwindSafe for AIPlayerDB
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