pub enum LobbyPlayer {
Human {
name: String,
},
Bot {
name: String,
bot_type: BotType,
},
}Expand description
A player slot in a lobby — either a human or a bot.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for LobbyPlayer
impl Clone for LobbyPlayer
Source§fn clone(&self) -> LobbyPlayer
fn clone(&self) -> LobbyPlayer
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LobbyPlayer
impl Debug for LobbyPlayer
Source§impl<'de> Deserialize<'de> for LobbyPlayer
impl<'de> Deserialize<'de> for LobbyPlayer
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LobbyPlayer
impl PartialEq for LobbyPlayer
Source§fn eq(&self, other: &LobbyPlayer) -> bool
fn eq(&self, other: &LobbyPlayer) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LobbyPlayer
impl Serialize for LobbyPlayer
impl StructuralPartialEq for LobbyPlayer
Auto Trait Implementations§
impl Freeze for LobbyPlayer
impl RefUnwindSafe for LobbyPlayer
impl Send for LobbyPlayer
impl Sync for LobbyPlayer
impl Unpin for LobbyPlayer
impl UnsafeUnpin for LobbyPlayer
impl UnwindSafe for LobbyPlayer
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