(stash)
This commit is contained in:
parent
d7b4221727
commit
2d3993452b
33 changed files with 920 additions and 143 deletions
|
|
@ -142,3 +142,19 @@ impl<'ctx> BotIdUnique<'ctx> {
|
|||
self.imp.find(col_val)
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(non_camel_case_types)]
|
||||
/// Extension trait for query builder access to the table `Bot`.
|
||||
///
|
||||
/// Implemented for [`__sdk::QueryTableAccessor`].
|
||||
pub trait botQueryTableAccess {
|
||||
#[allow(non_snake_case)]
|
||||
/// Get a query builder for the table `Bot`.
|
||||
fn bot(&self) -> __sdk::__query_builder::Table<Bot>;
|
||||
}
|
||||
|
||||
impl botQueryTableAccess for __sdk::QueryTableAccessor {
|
||||
fn bot(&self) -> __sdk::__query_builder::Table<Bot> {
|
||||
__sdk::__query_builder::Table::new("bot")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue