// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE // WILL NOT BE SAVED. MODIFY TABLES IN YOUR MODULE SOURCE CODE INSTEAD. #![allow(unused, clippy::all)] use super::db_tile_type::DbTile; use super::db_wall_type::DbWall; use spacetimedb_sdk::__codegen::{self as __sdk, __lib, __sats, __ws}; /// Table handle for the table `wall`. /// /// Obtain a handle from the [`WallTableAccess::wall`] method on [`super::RemoteTables`], /// like `ctx.db.wall()`. /// /// Users are encouraged not to explicitly reference this type, /// but to directly chain method calls, /// like `ctx.db.wall().on_insert(...)`. pub struct WallTableHandle<'ctx> { imp: __sdk::TableHandle, ctx: std::marker::PhantomData<&'ctx super::RemoteTables>, } #[allow(non_camel_case_types)] /// Extension trait for access to the table `wall`. /// /// Implemented for [`super::RemoteTables`]. pub trait WallTableAccess { #[allow(non_snake_case)] /// Obtain a [`WallTableHandle`], which mediates access to the table `wall`. fn wall(&self) -> WallTableHandle<'_>; } impl WallTableAccess for super::RemoteTables { fn wall(&self) -> WallTableHandle<'_> { WallTableHandle { imp: self.imp.get_table::("wall"), ctx: std::marker::PhantomData, } } } pub struct WallInsertCallbackId(__sdk::CallbackId); pub struct WallDeleteCallbackId(__sdk::CallbackId); impl<'ctx> __sdk::Table for WallTableHandle<'ctx> { type Row = DbWall; type EventContext = super::EventContext; fn count(&self) -> u64 { self.imp.count() } fn iter(&self) -> impl Iterator + '_ { self.imp.iter() } type InsertCallbackId = WallInsertCallbackId; fn on_insert( &self, callback: impl FnMut(&Self::EventContext, &Self::Row) + Send + 'static, ) -> WallInsertCallbackId { WallInsertCallbackId(self.imp.on_insert(Box::new(callback))) } fn remove_on_insert(&self, callback: WallInsertCallbackId) { self.imp.remove_on_insert(callback.0) } type DeleteCallbackId = WallDeleteCallbackId; fn on_delete( &self, callback: impl FnMut(&Self::EventContext, &Self::Row) + Send + 'static, ) -> WallDeleteCallbackId { WallDeleteCallbackId(self.imp.on_delete(Box::new(callback))) } fn remove_on_delete(&self, callback: WallDeleteCallbackId) { self.imp.remove_on_delete(callback.0) } } #[doc(hidden)] pub(super) fn register_table(client_cache: &mut __sdk::ClientCache) { let _table = client_cache.get_or_make_table::("wall"); _table.add_unique_constraint::("lobby_id", |row| &row.lobby_id); } pub struct WallUpdateCallbackId(__sdk::CallbackId); impl<'ctx> __sdk::TableWithPrimaryKey for WallTableHandle<'ctx> { type UpdateCallbackId = WallUpdateCallbackId; fn on_update( &self, callback: impl FnMut(&Self::EventContext, &Self::Row, &Self::Row) + Send + 'static, ) -> WallUpdateCallbackId { WallUpdateCallbackId(self.imp.on_update(Box::new(callback))) } fn remove_on_update(&self, callback: WallUpdateCallbackId) { self.imp.remove_on_update(callback.0) } } #[doc(hidden)] pub(super) fn parse_table_update( raw_updates: __ws::TableUpdate<__ws::BsatnFormat>, ) -> __sdk::Result<__sdk::TableUpdate> { __sdk::TableUpdate::parse_table_update(raw_updates).map_err(|e| { __sdk::InternalError::failed_parse("TableUpdate", "TableUpdate") .with_cause(e) .into() }) } /// Access to the `lobby_id` unique index on the table `wall`, /// which allows point queries on the field of the same name /// via the [`WallLobbyIdUnique::find`] method. /// /// Users are encouraged not to explicitly reference this type, /// but to directly chain method calls, /// like `ctx.db.wall().lobby_id().find(...)`. pub struct WallLobbyIdUnique<'ctx> { imp: __sdk::UniqueConstraintHandle, phantom: std::marker::PhantomData<&'ctx super::RemoteTables>, } impl<'ctx> WallTableHandle<'ctx> { /// Get a handle on the `lobby_id` unique index on the table `wall`. pub fn lobby_id(&self) -> WallLobbyIdUnique<'ctx> { WallLobbyIdUnique { imp: self.imp.get_unique_constraint::("lobby_id"), phantom: std::marker::PhantomData, } } } impl<'ctx> WallLobbyIdUnique<'ctx> { /// Find the subscribed row whose `lobby_id` column value is equal to `col_val`, /// if such a row is present in the client cache. pub fn find(&self, col_val: &u32) -> Option { self.imp.find(col_val) } }