pub struct FactionRaidWarParticipant {
pub id: FactionId,
pub name: String,
pub score: i32,
pub chain: i32,
pub is_aggressor: bool,
}
Fields§
§id: FactionId
§name: String
§score: i32
§chain: i32
Faction’s current chain.
is_aggressor: bool
Trait Implementations§
Source§impl Clone for FactionRaidWarParticipant
impl Clone for FactionRaidWarParticipant
Source§fn clone(&self) -> FactionRaidWarParticipant
fn clone(&self) -> FactionRaidWarParticipant
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FactionRaidWarParticipant
impl Debug for FactionRaidWarParticipant
Source§impl<'de> Deserialize<'de> for FactionRaidWarParticipant
impl<'de> Deserialize<'de> for FactionRaidWarParticipant
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 FactionRaidWarParticipant
impl PartialEq for FactionRaidWarParticipant
Source§fn eq(&self, other: &FactionRaidWarParticipant) -> bool
fn eq(&self, other: &FactionRaidWarParticipant) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for FactionRaidWarParticipant
Auto Trait Implementations§
impl Freeze for FactionRaidWarParticipant
impl RefUnwindSafe for FactionRaidWarParticipant
impl Send for FactionRaidWarParticipant
impl Sync for FactionRaidWarParticipant
impl Unpin for FactionRaidWarParticipant
impl UnwindSafe for FactionRaidWarParticipant
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