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