pub struct AgentOwned {
pub name: Option<String>,
pub id: usize,
pub prof: u32,
pub elite: u32,
pub is_self: u32,
pub team: u16,
}
Fields§
§name: Option<String>
Name of the agent.
id: usize
Unique id.
prof: u32
Profession of the agent.
elite: u32
Elite (specialization) of the agent.
is_self: u32
Whether the agent is self (the local player).
team: u16
Team the agent is in.
Trait Implementations§
Source§impl Clone for AgentOwned
impl Clone for AgentOwned
Source§fn clone(&self) -> AgentOwned
fn clone(&self) -> AgentOwned
Returns a copy 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 AgentOwned
impl Debug for AgentOwned
Source§impl<'de> Deserialize<'de> for AgentOwned
impl<'de> Deserialize<'de> for AgentOwned
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentOwned, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AgentOwned, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&Agent> for AgentOwned
impl From<&Agent> for AgentOwned
Source§fn from(agent: &Agent) -> AgentOwned
fn from(agent: &Agent) -> AgentOwned
Converts to this type from the input type.
Source§impl From<Agent> for AgentOwned
impl From<Agent> for AgentOwned
Source§fn from(agent: Agent) -> AgentOwned
fn from(agent: Agent) -> AgentOwned
Converts to this type from the input type.
Source§impl Serialize for AgentOwned
impl Serialize for AgentOwned
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for AgentOwned
impl RefUnwindSafe for AgentOwned
impl Send for AgentOwned
impl Sync for AgentOwned
impl Unpin for AgentOwned
impl UnwindSafe for AgentOwned
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