pub struct FactionTerritory {
pub id: FactionTerritoryEnum,
pub acquired_at: i32,
pub sector: i32,
pub size: i32,
pub density: i32,
pub slots: i32,
pub respect: i32,
pub coordinates: TornTerritoryCoordinates,
pub racket: Option<TornRacket>,
}
Fields§
§id: FactionTerritoryEnum
§acquired_at: i32
§sector: i32
§size: i32
§density: i32
§slots: i32
§respect: i32
§coordinates: TornTerritoryCoordinates
§racket: Option<TornRacket>
Trait Implementations§
Source§impl Clone for FactionTerritory
impl Clone for FactionTerritory
Source§fn clone(&self) -> FactionTerritory
fn clone(&self) -> FactionTerritory
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 FactionTerritory
impl Debug for FactionTerritory
Source§impl<'de> Deserialize<'de> for FactionTerritory
impl<'de> Deserialize<'de> for FactionTerritory
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 FactionTerritory
impl PartialEq for FactionTerritory
impl StructuralPartialEq for FactionTerritory
Auto Trait Implementations§
impl Freeze for FactionTerritory
impl RefUnwindSafe for FactionTerritory
impl Send for FactionTerritory
impl Sync for FactionTerritory
impl Unpin for FactionTerritory
impl UnwindSafe for FactionTerritory
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