#[repr(C)]pub struct AgentUpdate {
pub id: usize,
pub instance_id: usize,
pub prof: u32,
pub elite: u32,
pub team: u16,
pub subgroup: u16,
/* private fields */
}Expand description
ArcDPS agent update.
Fields§
§id: usizeArcDPS id of the agent.
instance_id: usizeInstance id of the agent.
prof: u32Agent profession.
elite: u32Agent elite specialization.
team: u16Agent team.
subgroup: u16Agent subgroup.
Implementations§
Source§impl AgentUpdate
impl AgentUpdate
Trait Implementations§
Source§impl Clone for AgentUpdate
impl Clone for AgentUpdate
Source§fn clone(&self) -> AgentUpdate
fn clone(&self) -> AgentUpdate
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 moreAuto Trait Implementations§
impl Freeze for AgentUpdate
impl RefUnwindSafe for AgentUpdate
impl Send for AgentUpdate
impl Sync for AgentUpdate
impl Unpin for AgentUpdate
impl UnwindSafe for AgentUpdate
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