[][src]Struct df_st_legends_plus::DFWorldLegendsPlus

pub struct DFWorldLegendsPlus {
    pub name: Option<String>,
    pub altname: Option<String>,
    pub landmasses: Option<Landmasses>,
    pub mountain_peaks: Option<MountainPeaks>,
    pub regions: Option<Regions>,
    pub underground_regions: Option<UndergroundRegions>,
    pub rivers: Option<Rivers>,
    pub creature_raw: Option<CreatureRaw>,
    pub sites: Option<Sites>,
    pub world_constructions: Option<WorldConstructions>,
    pub artifacts: Option<Artifacts>,
    pub historical_figures: Option<HistoricalFigures>,
    pub identities: Option<Identities>,
    pub entity_populations: Option<EntityPopulations>,
    pub entities: Option<Entities>,
    pub historical_events: Option<HistoricalEvents>,
    pub historical_event_relationships: Option<HERelationships>,
    pub historical_event_relationship_supplements: Option<HERelationshipSupplements>,
    pub historical_event_collections: Option<HistoricalEventCollections>,
    pub historical_eras: Option<HistoricalEras>,
    pub written_contents: Option<WrittenContents>,
    pub poetic_forms: Option<PoeticForms>,
    pub musical_forms: Option<MusicalForms>,
    pub dance_forms: Option<DanceForms>,
    pub unknown: HashMap<String, Value>,
}

Fields

name: Option<String>altname: Option<String>landmasses: Option<Landmasses>mountain_peaks: Option<MountainPeaks>regions: Option<Regions>underground_regions: Option<UndergroundRegions>rivers: Option<Rivers>creature_raw: Option<CreatureRaw>sites: Option<Sites>world_constructions: Option<WorldConstructions>artifacts: Option<Artifacts>historical_figures: Option<HistoricalFigures>identities: Option<Identities>entity_populations: Option<EntityPopulations>entities: Option<Entities>historical_events: Option<HistoricalEvents>historical_event_relationships: Option<HERelationships>historical_event_relationship_supplements: Option<HERelationshipSupplements>historical_event_collections: Option<HistoricalEventCollections>historical_eras: Option<HistoricalEras>written_contents: Option<WrittenContents>poetic_forms: Option<PoeticForms>musical_forms: Option<MusicalForms>dance_forms: Option<DanceForms>unknown: HashMap<String, Value>

Implementations

impl DFWorldLegendsPlus[src]

pub fn new() -> Self[src]

Trait Implementations

impl Clone for DFWorldLegendsPlus[src]

impl Debug for DFWorldLegendsPlus[src]

impl Default for DFWorldLegendsPlus[src]

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

impl Filler<DFWorld, DFWorldLegendsPlus> for DFWorld[src]

impl HasUnknown for DFWorldLegendsPlus[src]

impl Serialize for DFWorldLegendsPlus[src]

Auto Trait Implementations

impl RefUnwindSafe for DFWorldLegendsPlus

impl Send for DFWorldLegendsPlus

impl Sync for DFWorldLegendsPlus

impl Unpin for DFWorldLegendsPlus

impl UnwindSafe for DFWorldLegendsPlus

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.