[−][src]Struct df_st_db::Site
Fields
id: i32
world_id: i32
type_: Option<String>
name: Option<String>
coordinate_id: Option<i32>
rectangle_id: Option<i32>
civ_id: Option<i32>
cur_owner_id: Option<i32>
Implementations
impl Site
[src]
Trait Implementations
impl<'update> AsChangeset for &'update Site
[src]
type Target = table
The table which Self::Changeset
will be updating
type Changeset = <(Eq<world_id, &'update i32>, Option<Eq<type_, &'update String>>, Option<Eq<name, &'update String>>, Option<Eq<coordinate_id, &'update i32>>, Option<Eq<rectangle_id, &'update i32>>, Option<Eq<civ_id, &'update i32>>, Option<Eq<cur_owner_id, &'update i32>>) as AsChangeset>::Changeset
The update statement this type represents
fn as_changeset(self) -> Self::Changeset
[src]
impl<'update> AsChangeset for Site
[src]
type Target = table
The table which Self::Changeset
will be updating
type Changeset = <(Eq<world_id, i32>, Option<Eq<type_, String>>, Option<Eq<name, String>>, Option<Eq<coordinate_id, i32>>, Option<Eq<rectangle_id, i32>>, Option<Eq<civ_id, i32>>, Option<Eq<cur_owner_id, i32>>) as AsChangeset>::Changeset
The update statement this type represents
fn as_changeset(self) -> Self::Changeset
[src]
impl BelongsTo<Coordinate> for Site
[src]
type ForeignKey = i32
The foreign key of this struct
type ForeignKeyColumn = coordinate_id
The database column representing the foreign key of the table this struct represents Read more
fn foreign_key(&self) -> Option<&Self::ForeignKey>
[src]
fn foreign_key_column() -> Self::ForeignKeyColumn
[src]
impl BelongsTo<Rectangle> for Site
[src]
type ForeignKey = i32
The foreign key of this struct
type ForeignKeyColumn = rectangle_id
The database column representing the foreign key of the table this struct represents Read more
fn foreign_key(&self) -> Option<&Self::ForeignKey>
[src]
fn foreign_key_column() -> Self::ForeignKeyColumn
[src]
impl<__FK> BelongsTo<Site> for Structure where
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a Site: Identifiable<Id = &'__a __FK>,
[src]
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a Site: Identifiable<Id = &'__a __FK>,
type ForeignKey = __FK
The foreign key of this struct
type ForeignKeyColumn = site_id
The database column representing the foreign key of the table this struct represents Read more
fn foreign_key(&self) -> Option<&Self::ForeignKey>
[src]
fn foreign_key_column() -> Self::ForeignKeyColumn
[src]
impl<__FK> BelongsTo<Site> for SiteProperty where
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a Site: Identifiable<Id = &'__a __FK>,
[src]
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a Site: Identifiable<Id = &'__a __FK>,
type ForeignKey = __FK
The foreign key of this struct
type ForeignKeyColumn = site_id
The database column representing the foreign key of the table this struct represents Read more
fn foreign_key(&self) -> Option<&Self::ForeignKey>
[src]
fn foreign_key_column() -> Self::ForeignKeyColumn
[src]
impl<__FK> BelongsTo<Site> for Site where
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a Site: Identifiable<Id = &'__a __FK>,
[src]
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a Site: Identifiable<Id = &'__a __FK>,
type ForeignKey = __FK
The foreign key of this struct
type ForeignKeyColumn = id
The database column representing the foreign key of the table this struct represents Read more
fn foreign_key(&self) -> Option<&Self::ForeignKey>
[src]
fn foreign_key_column() -> Self::ForeignKeyColumn
[src]
impl Clone for Site
[src]
impl DBObject<Site, Site> for Site
[src]
fn add_missing_data_advanced(core_world: &DFWorld, world: &mut DBDFWorld)
[src]
fn insert_into_db(conn: &DbConnection, site: &[Site])
[src]
fn find_db_item(
conn: &DbConnection,
id_filter: HashMap<String, i32>
) -> Result<Option<Site>, Error>
[src]
conn: &DbConnection,
id_filter: HashMap<String, i32>
) -> Result<Option<Site>, Error>
fn find_db_list(
conn: &DbConnection,
id_filter: HashMap<String, i32>,
_string_filter: HashMap<String, String>,
offset: i64,
limit: i64,
order: Option<OrderTypes>,
order_by: Option<String>,
id_list: Option<Vec<i32>>
) -> Result<Vec<Site>, Error>
[src]
conn: &DbConnection,
id_filter: HashMap<String, i32>,
_string_filter: HashMap<String, String>,
offset: i64,
limit: i64,
order: Option<OrderTypes>,
order_by: Option<String>,
id_list: Option<Vec<i32>>
) -> Result<Vec<Site>, Error>
fn match_field_by(field: String) -> String
[src]
fn add_nested_items(
conn: &DbConnection,
db_list: &[Site],
core_list: Vec<Site>
) -> Result<Vec<Site>, Error>
[src]
conn: &DbConnection,
db_list: &[Site],
core_list: Vec<Site>
) -> Result<Vec<Site>, Error>
fn get_count_from_db(
conn: &DbConnection,
id_filter: HashMap<String, i32>,
_string_filter: HashMap<String, String>,
offset: u32,
limit: u32,
group_by_opt: Option<String>,
id_list: Option<Vec<i32>>
) -> Result<Vec<ItemCount>, Error>
[src]
conn: &DbConnection,
id_filter: HashMap<String, i32>,
_string_filter: HashMap<String, String>,
offset: u32,
limit: u32,
group_by_opt: Option<String>,
id_list: Option<Vec<i32>>
) -> Result<Vec<ItemCount>, Error>
fn get_order(
order: Option<OrderTypes>,
order_by: Option<String>
) -> (String, bool)
[src]
order: Option<OrderTypes>,
order_by: Option<String>
) -> (String, bool)
fn match_field_by_opt(field: Option<String>) -> Option<String>
[src]
fn insert_into_db_chunked(conn: &DbConnection, db_list: &[D])
[src]
fn insert_into_db_chunked_indexmap(
conn: &DbConnection,
db_list: &IndexMap<u64, D>
)
[src]
conn: &DbConnection,
db_list: &IndexMap<u64, D>
)
fn indexmap_chunks(
indexmap: &IndexMap<u64, D>,
chunk_size: usize,
offset: usize
) -> Vec<D>
[src]
indexmap: &IndexMap<u64, D>,
chunk_size: usize,
offset: usize
) -> Vec<D>
fn get_list_from_db(
conn: &DbConnection,
id_filter: HashMap<String, i32>,
string_filter: HashMap<String, String>,
offset: u32,
limit: u32,
order: Option<OrderTypes>,
order_by: Option<String>,
id_list: Option<Vec<i32>>,
add_nested_items: bool
) -> Result<Vec<C>, Error>
[src]
conn: &DbConnection,
id_filter: HashMap<String, i32>,
string_filter: HashMap<String, String>,
offset: u32,
limit: u32,
order: Option<OrderTypes>,
order_by: Option<String>,
id_list: Option<Vec<i32>>,
add_nested_items: bool
) -> Result<Vec<C>, Error>
fn get_from_db(
conn: &DbConnection,
id_filter: HashMap<String, i32>,
add_nested_items: bool
) -> Result<Option<C>, Error>
[src]
conn: &DbConnection,
id_filter: HashMap<String, i32>,
add_nested_items: bool
) -> Result<Option<C>, Error>
impl Debug for Site
[src]
impl Default for Site
[src]
impl Fillable for Site
[src]
impl Filler<Site, Site> for Site
[src]
fn add_missing_data(&mut self, source: &Site)
[src]
fn never_replace_data(&mut self, source: &Site)
[src]
fn replace_data(&mut self, source: &Site)
[src]
fn add_missing_data_indexed(&mut self, source: &S, _index: u64)
[src]
fn check_mergeable(&self, source: &S) -> bool where
S: PartialEq<Self> + Debug,
Self: Debug + Default + PartialEq<Self>,
[src]
S: PartialEq<Self> + Debug,
Self: Debug + Default + PartialEq<Self>,
impl Filler<Site, Site> for Site
[src]
From Core to DB
fn add_missing_data(&mut self, source: &Site)
[src]
fn add_missing_data_indexed(&mut self, source: &S, _index: u64)
[src]
fn never_replace_data(&mut self, source: &S) where
Self: Debug,
[src]
Self: Debug,
fn replace_data(&mut self, source: &S) where
Self: Debug,
[src]
Self: Debug,
fn check_mergeable(&self, source: &S) -> bool where
S: PartialEq<Self> + Debug,
Self: Debug + Default + PartialEq<Self>,
[src]
S: PartialEq<Self> + Debug,
Self: Debug + Default + PartialEq<Self>,
impl Filler<Site, Site> for Site
[src]
From DB to Core
fn add_missing_data(&mut self, source: &Site)
[src]
fn add_missing_data_indexed(&mut self, source: &S, _index: u64)
[src]
fn never_replace_data(&mut self, source: &S) where
Self: Debug,
[src]
Self: Debug,
fn replace_data(&mut self, source: &S) where
Self: Debug,
[src]
Self: Debug,
fn check_mergeable(&self, source: &S) -> bool where
S: PartialEq<Self> + Debug,
Self: Debug + Default + PartialEq<Self>,
[src]
S: PartialEq<Self> + Debug,
Self: Debug + Default + PartialEq<Self>,
impl HasTable for Site
[src]
impl Hash for Site
[src]
fn hash<H: Hasher>(&self, state: &mut H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl<'ident> Identifiable for &'ident Site
[src]
impl<'insert> Insertable<table> for Site
[src]
type Values = <(Option<Eq<id, i32>>, Option<Eq<world_id, i32>>, Option<Eq<type_, String>>, Option<Eq<name, String>>, Option<Eq<coordinate_id, i32>>, Option<Eq<rectangle_id, i32>>, Option<Eq<civ_id, i32>>, Option<Eq<cur_owner_id, i32>>) as Insertable<table>>::Values
The VALUES
clause to insert these records Read more
fn values(self) -> Self::Values
[src]
fn insert_into(
self,
table: T
) -> InsertStatement<T, Self::Values, Insert, NoReturningClause>
self,
table: T
) -> InsertStatement<T, Self::Values, Insert, NoReturningClause>
impl<'insert> Insertable<table> for &'insert Site
[src]
type Values = <(Option<Eq<id, &'insert i32>>, Option<Eq<world_id, &'insert i32>>, Option<Eq<type_, &'insert String>>, Option<Eq<name, &'insert String>>, Option<Eq<coordinate_id, &'insert i32>>, Option<Eq<rectangle_id, &'insert i32>>, Option<Eq<civ_id, &'insert i32>>, Option<Eq<cur_owner_id, &'insert i32>>) as Insertable<table>>::Values
The VALUES
clause to insert these records Read more
fn values(self) -> Self::Values
[src]
fn insert_into(
self,
table: T
) -> InsertStatement<T, Self::Values, Insert, NoReturningClause>
self,
table: T
) -> InsertStatement<T, Self::Values, Insert, NoReturningClause>
impl PartialEq<Site> for Site
[src]
impl PartialEq<Site> for Site
[src]
impl PartialEq<Site> for Site
[src]
impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Site where
(i32, i32, Option<String>, Option<String>, Option<i32>, Option<i32>, Option<i32>, Option<i32>): Queryable<__ST, __DB>,
[src]
(i32, i32, Option<String>, Option<String>, Option<i32>, Option<i32>, Option<i32>, Option<i32>): Queryable<__ST, __DB>,
type Row = <(i32, i32, Option<String>, Option<String>, Option<i32>, Option<i32>, Option<i32>, Option<i32>) as Queryable<__ST, __DB>>::Row
The Rust type you'd like to map from. Read more
fn build(row: Self::Row) -> Self
[src]
impl<'insert> UndecoratedInsertRecord<table> for Site
[src]
Auto Trait Implementations
impl RefUnwindSafe for Site
impl Send for Site
impl Sync for Site
impl Unpin for Site
impl UnwindSafe for Site
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<'a, Parent, Child> BelongingToDsl<&'a [Parent]> for Child where
Child: HasTable + BelongsTo<Parent>,
&'a Parent: Identifiable,
Vec<<&'a Parent as Identifiable>::Id>: AsInExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>,
<Child as HasTable>::Table: FilterDsl<In<<Child as BelongsTo<Parent>>::ForeignKeyColumn, <Vec<<&'a Parent as Identifiable>::Id> as AsInExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>>::InExpression>>,
<Child as BelongsTo<Parent>>::ForeignKeyColumn: ExpressionMethods,
Child: HasTable + BelongsTo<Parent>,
&'a Parent: Identifiable,
Vec<<&'a Parent as Identifiable>::Id>: AsInExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>,
<Child as HasTable>::Table: FilterDsl<In<<Child as BelongsTo<Parent>>::ForeignKeyColumn, <Vec<<&'a Parent as Identifiable>::Id> as AsInExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>>::InExpression>>,
<Child as BelongsTo<Parent>>::ForeignKeyColumn: ExpressionMethods,
type Output = <<Child as HasTable>::Table as FilterDsl<In<<Child as BelongsTo<Parent>>::ForeignKeyColumn, <Vec<<&'a Parent as Identifiable>::Id> as AsInExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>>::InExpression>>>::Output
The query returned by belonging_to
fn belonging_to(
parents: &'a [Parent]
) -> <Child as BelongingToDsl<&'a [Parent]>>::Output
parents: &'a [Parent]
) -> <Child as BelongingToDsl<&'a [Parent]>>::Output
impl<'a, Parent, Child> BelongingToDsl<&'a Parent> for Child where
Child: HasTable + BelongsTo<Parent>,
&'a Parent: Identifiable,
<&'a Parent as Identifiable>::Id: AsExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>,
<Child as HasTable>::Table: FilterDsl<Eq<<Child as BelongsTo<Parent>>::ForeignKeyColumn, <<&'a Parent as Identifiable>::Id as AsExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>>::Expression>>,
<Child as BelongsTo<Parent>>::ForeignKeyColumn: ExpressionMethods,
Child: HasTable + BelongsTo<Parent>,
&'a Parent: Identifiable,
<&'a Parent as Identifiable>::Id: AsExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>,
<Child as HasTable>::Table: FilterDsl<Eq<<Child as BelongsTo<Parent>>::ForeignKeyColumn, <<&'a Parent as Identifiable>::Id as AsExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>>::Expression>>,
<Child as BelongsTo<Parent>>::ForeignKeyColumn: ExpressionMethods,
type Output = <<Child as HasTable>::Table as FilterDsl<Eq<<Child as BelongsTo<Parent>>::ForeignKeyColumn, <<&'a Parent as Identifiable>::Id as AsExpression<<<Child as BelongsTo<Parent>>::ForeignKeyColumn as Expression>::SqlType>>::Expression>>>::Output
The query returned by belonging_to
fn belonging_to(
parent: &'a Parent
) -> <Child as BelongingToDsl<&'a Parent>>::Output
parent: &'a Parent
) -> <Child as BelongingToDsl<&'a Parent>>::Output
impl<'a, Parent, Child> BelongingToDsl<&'a Vec<Parent>> for Child where
Child: BelongingToDsl<&'a [Parent]>,
Child: BelongingToDsl<&'a [Parent]>,
type Output = <Child as BelongingToDsl<&'a [Parent]>>::Output
The query returned by belonging_to
fn belonging_to(
parents: &'a Vec<Parent>
) -> <Child as BelongingToDsl<&'a Vec<Parent>>>::Output
parents: &'a Vec<Parent>
) -> <Child as BelongingToDsl<&'a Vec<Parent>>>::Output
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DynClone for T where
T: Clone,
[src]
T: Clone,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoSql for T
fn into_sql<T>(self) -> Self::Expression where
Self: AsExpression<T>,
Self: AsExpression<T>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
&'a Self: AsExpression<T>,
&'a Self: AsExpression<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,