[][src]Struct df_st_core::df_world::site::Structure

pub struct Structure {
    pub site_id: i32,
    pub local_id: i32,
    pub name: Option<String>,
    pub name2: Option<String>,
    pub type_: Option<String>,
    pub subtype: Option<String>,
    pub entity_id: Option<i32>,
    pub worship_hf_id: Option<i32>,
    pub copied_artifact_ids: Vec<i32>,
    pub deity_type: Option<i32>,
    pub deity_id: Option<i32>,
    pub religion_id: Option<i32>,
    pub dungeon_type: Option<i32>,
    pub inhabitant_hf_ids: Vec<i32>,
}

Fields

site_id: i32local_id: i32name: Option<String>name2: Option<String>type_: Option<String>subtype: Option<String>entity_id: Option<i32>worship_hf_id: Option<i32>copied_artifact_ids: Vec<i32>deity_type: Option<i32>deity_id: Option<i32>religion_id: Option<i32>dungeon_type: Option<i32>inhabitant_hf_ids: Vec<i32>

Trait Implementations

impl Clone for Structure[src]

impl Debug for Structure[src]

impl Default for Structure[src]

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

impl Fillable for Structure[src]

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

impl<__S> GraphQLType<__S> for Structure 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 Structure[src]

impl JsonSchema for Structure[src]

impl PartialEq<Structure> for Structure[src]

impl SchemaExample for Structure[src]

impl Serialize for Structure[src]

Auto Trait Implementations

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.