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