[−][src]Struct df_st_db::HECHEID
Fields
hec_id: i32
he_id: i32
world_id: i32
Implementations
impl HECHEID
[src]
Trait Implementations
impl<__FK> BelongsTo<HistoricalEventCollection> for HECHEID where
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a HistoricalEventCollection: Identifiable<Id = &'__a __FK>,
[src]
__FK: Hash + Eq,
&'__a i32: Into<Option<&'__a __FK>>,
&'__a HistoricalEventCollection: Identifiable<Id = &'__a __FK>,
type ForeignKey = __FK
The foreign key of this struct
type ForeignKeyColumn = hec_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 HECHEID
[src]
impl DBObject<HECHEID, HECHEID> for HECHEID
[src]
fn add_missing_data_advanced(_core_world: &DFWorld, _world: &mut DBDFWorld)
[src]
fn insert_into_db(conn: &DbConnection, hec_he_ids: &[HECHEID])
[src]
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<HECHEID>, 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<HECHEID>, Error>
Get a list of HECHEID from the database
fn find_db_item(
conn: &DbConnection,
id_filter: HashMap<String, i32>
) -> Result<Option<HECHEID>, Error>
[src]
conn: &DbConnection,
id_filter: HashMap<String, i32>
) -> Result<Option<HECHEID>, Error>
fn match_field_by(field: String) -> String
[src]
fn add_nested_items(
_conn: &DbConnection,
_db_list: &[HECHEID],
core_list: Vec<HECHEID>
) -> Result<Vec<HECHEID>, Error>
[src]
_conn: &DbConnection,
_db_list: &[HECHEID],
core_list: Vec<HECHEID>
) -> Result<Vec<HECHEID>, 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 HECHEID
[src]
impl Default for HECHEID
[src]
impl Fillable for HECHEID
[src]
impl Filler<HECHEID, HECHEID> for HECHEID
[src]
fn add_missing_data(&mut self, source: &HECHEID)
[src]
fn never_replace_data(&mut self, source: &HECHEID)
[src]
fn replace_data(&mut self, source: &HECHEID)
[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 HasTable for HECHEID
[src]
impl Hash for HECHEID
[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 HECHEID
[src]
type Id = (&'ident i32, &'ident i32)
The type of this struct's identifier. Read more
fn id(self) -> Self::Id
[src]
impl<'insert> Insertable<table> for HECHEID
[src]
type Values = <(Option<Eq<hec_id, i32>>, Option<Eq<he_id, i32>>, Option<Eq<world_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 HECHEID
[src]
type Values = <(Option<Eq<hec_id, &'insert i32>>, Option<Eq<he_id, &'insert i32>>, Option<Eq<world_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<HECHEID> for HECHEID
[src]
impl<__DB: Backend, __ST> Queryable<__ST, __DB> for HECHEID where
(i32, i32, i32): Queryable<__ST, __DB>,
[src]
(i32, i32, i32): Queryable<__ST, __DB>,
type Row = <(i32, i32, 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 HECHEID
[src]
Auto Trait Implementations
impl RefUnwindSafe for HECHEID
impl Send for HECHEID
impl Sync for HECHEID
impl Unpin for HECHEID
impl UnwindSafe for HECHEID
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>,