[][src]Struct df_st_db::Landmass

pub struct Landmass {
    pub id: i32,
    pub world_id: i32,
    pub name: Option<String>,
    pub coord_1_id: Option<i32>,
    pub coord_2_id: Option<i32>,
}

Fields

id: i32world_id: i32name: Option<String>coord_1_id: Option<i32>coord_2_id: Option<i32>

Implementations

impl Landmass[src]

pub fn new() -> Self[src]

Trait Implementations

impl<'update> AsChangeset for &'update Landmass[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<world_id, &'update i32>, Option<Eq<name, &'update String>>, Option<Eq<coord_1_id, &'update i32>>, Option<Eq<coord_2_id, &'update i32>>) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for Landmass[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<world_id, i32>, Option<Eq<name, String>>, Option<Eq<coord_1_id, i32>>, Option<Eq<coord_2_id, i32>>) as AsChangeset>::Changeset

The update statement this type represents

impl Clone for Landmass[src]

impl DBObject<Landmass, Landmass> for Landmass[src]

impl Debug for Landmass[src]

impl Default for Landmass[src]

impl Fillable for Landmass[src]

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

From Core to DB

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

From DB to Core

impl HasTable for Landmass[src]

type Table = table

The table this type is associated with.

impl Hash for Landmass[src]

impl<'ident> Identifiable for &'ident Landmass[src]

type Id = &'ident i32

The type of this struct's identifier. Read more

impl<'insert> Insertable<table> for Landmass[src]

type Values = <(Option<Eq<id, i32>>, Option<Eq<world_id, i32>>, Option<Eq<name, String>>, Option<Eq<coord_1_id, i32>>, Option<Eq<coord_2_id, i32>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> Insertable<table> for &'insert Landmass[src]

type Values = <(Option<Eq<id, &'insert i32>>, Option<Eq<world_id, &'insert i32>>, Option<Eq<name, &'insert String>>, Option<Eq<coord_1_id, &'insert i32>>, Option<Eq<coord_2_id, &'insert i32>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl PartialEq<Landmass> for Landmass[src]

impl PartialEq<Landmass> for Landmass[src]

impl PartialEq<Landmass> for Landmass[src]

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Landmass where
    (i32, i32, Option<String>, Option<i32>, Option<i32>): Queryable<__ST, __DB>, 
[src]

type Row = <(i32, i32, Option<String>, Option<i32>, Option<i32>) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

impl<'insert> UndecoratedInsertRecord<table> for Landmass[src]

Auto Trait Implementations

impl RefUnwindSafe for Landmass

impl Send for Landmass

impl Sync for Landmass

impl Unpin for Landmass

impl UnwindSafe for Landmass

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> 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> IntoSql for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,