[][src]Struct df_st_db::LinkHEHF

pub struct LinkHEHF {
    pub he_id: i32,
    pub hf_id: i32,
    pub world_id: i32,
}

Fields

he_id: i32

A reference to a HistoricalEvent.

hf_id: i32

A reference to a HistoricalFigure.

world_id: i32

Implementations

impl LinkHEHF[src]

pub fn new() -> Self[src]

Trait Implementations

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

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<he_id, &'update i32>, Eq<hf_id, &'update i32>, Eq<world_id, &'update i32>) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for LinkHEHF[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<he_id, i32>, Eq<hf_id, i32>, Eq<world_id, i32>) as AsChangeset>::Changeset

The update statement this type represents

impl Clone for LinkHEHF[src]

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

impl Debug for LinkHEHF[src]

impl Default for LinkHEHF[src]

impl Eq for LinkHEHF[src]

impl Fillable for LinkHEHF[src]

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

From Core to DB

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

From DB to Core

impl Hash for LinkHEHF[src]

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

type Values = <(Option<Eq<he_id, i32>>, Option<Eq<hf_id, i32>>, Option<Eq<world_id, i32>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

type Values = <(Option<Eq<he_id, &'insert i32>>, Option<Eq<hf_id, &'insert i32>>, Option<Eq<world_id, &'insert i32>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl PartialEq<LinkHEHF> for LinkHEHF[src]

impl PartialEq<LinkHEHF> for LinkHEHF[src]

impl PartialEq<LinkHEHF> for LinkHEHF[src]

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

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

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

impl StructuralEq for LinkHEHF[src]

impl StructuralPartialEq for LinkHEHF[src]

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

Auto Trait Implementations

impl RefUnwindSafe for LinkHEHF

impl Send for LinkHEHF

impl Sync for LinkHEHF

impl Unpin for LinkHEHF

impl UnwindSafe for LinkHEHF

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[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>,