pub struct FactionTerritoryWarOngoing {
pub id: TerritoryWarId,
pub territory: FactionTerritoryEnum,
pub start: i32,
pub end: i32,
pub target: i32,
pub factions: Vec<FactionTerritoryWarOngoingFaction>,
}Fields§
§id: TerritoryWarId§territory: FactionTerritoryEnum§start: i32§end: i32§target: i32§factions: Vec<FactionTerritoryWarOngoingFaction>Trait Implementations§
Source§impl Clone for FactionTerritoryWarOngoing
impl Clone for FactionTerritoryWarOngoing
Source§fn clone(&self) -> FactionTerritoryWarOngoing
fn clone(&self) -> FactionTerritoryWarOngoing
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 FactionTerritoryWarOngoing
impl Debug for FactionTerritoryWarOngoing
Source§impl<'de> Deserialize<'de> for FactionTerritoryWarOngoing
impl<'de> Deserialize<'de> for FactionTerritoryWarOngoing
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 FactionTerritoryWarOngoing
impl PartialEq for FactionTerritoryWarOngoing
Source§fn eq(&self, other: &FactionTerritoryWarOngoing) -> bool
fn eq(&self, other: &FactionTerritoryWarOngoing) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FactionTerritoryWarOngoing
Auto Trait Implementations§
impl Freeze for FactionTerritoryWarOngoing
impl RefUnwindSafe for FactionTerritoryWarOngoing
impl Send for FactionTerritoryWarOngoing
impl Sync for FactionTerritoryWarOngoing
impl Unpin for FactionTerritoryWarOngoing
impl UnwindSafe for FactionTerritoryWarOngoing
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