[][src]Struct df_st_core::df_world::historical_event_collection::HistoricalEventCollection

pub struct HistoricalEventCollection {
    pub id: i32,
    pub type_: Option<String>,
    pub start_year: Option<i32>,
    pub start_seconds72: Option<i32>,
    pub end_year: Option<i32>,
    pub end_seconds72: Option<i32>,
    pub a_support_merc_en_id: Option<i32>,
    pub a_support_merc_hf_id: Vec<i32>,
    pub adjective: Option<String>,
    pub aggressor_ent_id: Option<i32>,
    pub attacking_en_id: Option<i32>,
    pub attacking_hf_id: Vec<i32>,
    pub attacking_merc_enid: Option<i32>,
    pub attacking_squad_animated: Vec<bool>,
    pub attacking_squad_deaths: Vec<i32>,
    pub attacking_squad_entity_pop: Vec<i32>,
    pub attacking_squad_number: Vec<i32>,
    pub attacking_squad_race: Vec<String>,
    pub attacking_squad_site: Vec<i32>,
    pub civ_id: Option<i32>,
    pub company_merc: Option<bool>,
    pub coords: Option<String>,
    pub d_support_merc_en_id: Option<i32>,
    pub d_support_merc_hf_id: Vec<i32>,
    pub defender_ent_id: Option<i32>,
    pub defending_en_id: Option<i32>,
    pub defending_hf_id: Vec<i32>,
    pub defending_merc_en_id: Option<i32>,
    pub defending_squad_animated: Vec<bool>,
    pub defending_squad_deaths: Vec<i32>,
    pub defending_squad_entity_pop: Vec<i32>,
    pub defending_squad_number: Vec<i32>,
    pub defending_squad_race: Vec<String>,
    pub defending_squad_site: Vec<i32>,
    pub he_ids: Vec<i32>,
    pub hec_ids: Vec<i32>,
    pub feature_layer_id: Option<i32>,
    pub individual_merc: Vec<bool>,
    pub name: Option<String>,
    pub noncom_hf_id: Vec<i32>,
    pub occasion_id: Option<i32>,
    pub ordinal: Option<i32>,
    pub outcome: Vec<String>,
    pub parent_hec_id: Option<i32>,
    pub site_id: Option<i32>,
    pub subregion_id: Option<i32>,
    pub target_entity_id: Option<i32>,
    pub war_hec_id: Option<i32>,
}

A Collection of Historical Events that are related to each other.

Fields

id: i32

Identifier for the historical event collection. id must be unique for the whole world.

type_: Option<String>start_year: Option<i32>start_seconds72: Option<i32>end_year: Option<i32>end_seconds72: Option<i32>a_support_merc_en_id: Option<i32>a_support_merc_hf_id: Vec<i32>adjective: Option<String>aggressor_ent_id: Option<i32>attacking_en_id: Option<i32>attacking_hf_id: Vec<i32>attacking_merc_enid: Option<i32>attacking_squad_animated: Vec<bool>attacking_squad_deaths: Vec<i32>attacking_squad_entity_pop: Vec<i32>attacking_squad_number: Vec<i32>attacking_squad_race: Vec<String>attacking_squad_site: Vec<i32>civ_id: Option<i32>company_merc: Option<bool>coords: Option<String>d_support_merc_en_id: Option<i32>d_support_merc_hf_id: Vec<i32>defender_ent_id: Option<i32>defending_en_id: Option<i32>defending_hf_id: Vec<i32>defending_merc_en_id: Option<i32>defending_squad_animated: Vec<bool>defending_squad_deaths: Vec<i32>defending_squad_entity_pop: Vec<i32>defending_squad_number: Vec<i32>defending_squad_race: Vec<String>defending_squad_site: Vec<i32>he_ids: Vec<i32>hec_ids: Vec<i32>feature_layer_id: Option<i32>individual_merc: Vec<bool>name: Option<String>noncom_hf_id: Vec<i32>occasion_id: Option<i32>ordinal: Option<i32>outcome: Vec<String>parent_hec_id: Option<i32>site_id: Option<i32>subregion_id: Option<i32>target_entity_id: Option<i32>war_hec_id: Option<i32>

Implementations

impl HistoricalEventCollection[src]

pub fn new() -> Self[src]

Trait Implementations

impl Clone for HistoricalEventCollection[src]

impl Debug for HistoricalEventCollection[src]

impl Default for HistoricalEventCollection[src]

impl<'de> Deserialize<'de> for HistoricalEventCollection[src]

impl Fillable for HistoricalEventCollection[src]

impl Filler<HistoricalEventCollection, HistoricalEventCollection> for HistoricalEventCollection[src]

impl<__S> GraphQLType<__S> for HistoricalEventCollection where
    __S: ScalarValue,
    &'__b __S: ScalarRefValue<'__b>, 
[src]

type Context = ()

The expected context type for this GraphQL type Read more

type TypeInfo = ()

Type that may carry additional schema information Read more

impl Hash for HistoricalEventCollection[src]

impl JsonSchema for HistoricalEventCollection[src]

impl PartialEq<HistoricalEventCollection> for HistoricalEventCollection[src]

impl SchemaExample for HistoricalEventCollection[src]

impl Serialize for HistoricalEventCollection[src]

Auto Trait Implementations

impl RefUnwindSafe for HistoricalEventCollection

impl Send for HistoricalEventCollection

impl Sync for HistoricalEventCollection

impl Unpin for HistoricalEventCollection

impl UnwindSafe for HistoricalEventCollection

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.