pub struct FactionRankedWar {
pub war_id: i32,
pub start: i32,
pub end: Option<i32>,
pub target: i32,
pub winner: Option<i32>,
pub factions: Vec<FactionRankedWarParticipant>,
}
Fields§
§war_id: i32
§start: i32
§end: Option<i32>
§target: i32
The score target of the war.
winner: Option<i32>
§factions: Vec<FactionRankedWarParticipant>
The factions involved in the ranked war.
Trait Implementations§
Source§impl Clone for FactionRankedWar
impl Clone for FactionRankedWar
Source§fn clone(&self) -> FactionRankedWar
fn clone(&self) -> FactionRankedWar
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 FactionRankedWar
impl Debug for FactionRankedWar
Source§impl<'de> Deserialize<'de> for FactionRankedWar
impl<'de> Deserialize<'de> for FactionRankedWar
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 FactionRankedWar
impl PartialEq for FactionRankedWar
impl StructuralPartialEq for FactionRankedWar
Auto Trait Implementations§
impl Freeze for FactionRankedWar
impl RefUnwindSafe for FactionRankedWar
impl Send for FactionRankedWar
impl Sync for FactionRankedWar
impl Unpin for FactionRankedWar
impl UnwindSafe for FactionRankedWar
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