[][src]Struct df_st_core::df_world::world_info::DFWorldInfo

pub struct DFWorldInfo {
    pub id: i32,
    pub save_name: Option<String>,
    pub name: Option<String>,
    pub alternative_name: Option<String>,
    pub region_number: Option<i32>,
    pub year: Option<i32>,
    pub month: Option<i32>,
    pub day: Option<i32>,
}

Information about the world.

Fields

id: i32

Identifier for the world. id must be unique among all the worlds.

save_name: Option<String>name: Option<String>alternative_name: Option<String>region_number: Option<i32>year: Option<i32>month: Option<i32>day: Option<i32>

Implementations

impl DFWorldInfo[src]

pub fn new() -> Self[src]

Trait Implementations

impl Clone for DFWorldInfo[src]

impl Debug for DFWorldInfo[src]

impl Default for DFWorldInfo[src]

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

impl Fillable for DFWorldInfo[src]

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

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

impl JsonSchema for DFWorldInfo[src]

impl PartialEq<DFWorldInfo> for DFWorldInfo[src]

impl SchemaExample for DFWorldInfo[src]

impl Serialize for DFWorldInfo[src]

Auto Trait Implementations

impl RefUnwindSafe for DFWorldInfo

impl Send for DFWorldInfo

impl Sync for DFWorldInfo

impl Unpin for DFWorldInfo

impl UnwindSafe for DFWorldInfo

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.