Struct arcdps::evtc::AgentOwned
source · 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<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 From<Agent> for AgentOwned
impl From<Agent> for AgentOwned
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