extract types
This commit is contained in:
parent
d7d567b0e6
commit
c86f8d93f1
30 changed files with 986 additions and 474 deletions
100
module_bindings/shuffle_wall_reducer.rs
Normal file
100
module_bindings/shuffle_wall_reducer.rs
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
// 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 spacetimedb_sdk::__codegen::{self as __sdk, __lib, __sats, __ws};
|
||||
|
||||
#[derive(__lib::ser::Serialize, __lib::de::Deserialize, Clone, PartialEq, Debug)]
|
||||
#[sats(crate = __lib)]
|
||||
pub(super) struct ShuffleWallArgs {}
|
||||
|
||||
impl From<ShuffleWallArgs> for super::Reducer {
|
||||
fn from(args: ShuffleWallArgs) -> Self {
|
||||
Self::ShuffleWall
|
||||
}
|
||||
}
|
||||
|
||||
impl __sdk::InModule for ShuffleWallArgs {
|
||||
type Module = super::RemoteModule;
|
||||
}
|
||||
|
||||
pub struct ShuffleWallCallbackId(__sdk::CallbackId);
|
||||
|
||||
#[allow(non_camel_case_types)]
|
||||
/// Extension trait for access to the reducer `shuffle_wall`.
|
||||
///
|
||||
/// Implemented for [`super::RemoteReducers`].
|
||||
pub trait shuffle_wall {
|
||||
/// Request that the remote module invoke the reducer `shuffle_wall` to run as soon as possible.
|
||||
///
|
||||
/// This method returns immediately, and errors only if we are unable to send the request.
|
||||
/// The reducer will run asynchronously in the future,
|
||||
/// and its status can be observed by listening for [`Self::on_shuffle_wall`] callbacks.
|
||||
fn shuffle_wall(&self) -> __sdk::Result<()>;
|
||||
/// Register a callback to run whenever we are notified of an invocation of the reducer `shuffle_wall`.
|
||||
///
|
||||
/// Callbacks should inspect the [`__sdk::ReducerEvent`] contained in the [`super::ReducerEventContext`]
|
||||
/// to determine the reducer's status.
|
||||
///
|
||||
/// The returned [`ShuffleWallCallbackId`] can be passed to [`Self::remove_on_shuffle_wall`]
|
||||
/// to cancel the callback.
|
||||
fn on_shuffle_wall(
|
||||
&self,
|
||||
callback: impl FnMut(&super::ReducerEventContext) + Send + 'static,
|
||||
) -> ShuffleWallCallbackId;
|
||||
/// Cancel a callback previously registered by [`Self::on_shuffle_wall`],
|
||||
/// causing it not to run in the future.
|
||||
fn remove_on_shuffle_wall(&self, callback: ShuffleWallCallbackId);
|
||||
}
|
||||
|
||||
impl shuffle_wall for super::RemoteReducers {
|
||||
fn shuffle_wall(&self) -> __sdk::Result<()> {
|
||||
self.imp.call_reducer("shuffle_wall", ShuffleWallArgs {})
|
||||
}
|
||||
fn on_shuffle_wall(
|
||||
&self,
|
||||
mut callback: impl FnMut(&super::ReducerEventContext) + Send + 'static,
|
||||
) -> ShuffleWallCallbackId {
|
||||
ShuffleWallCallbackId(self.imp.on_reducer(
|
||||
"shuffle_wall",
|
||||
Box::new(move |ctx: &super::ReducerEventContext| {
|
||||
#[allow(irrefutable_let_patterns)]
|
||||
let super::ReducerEventContext {
|
||||
event:
|
||||
__sdk::ReducerEvent {
|
||||
reducer: super::Reducer::ShuffleWall {},
|
||||
..
|
||||
},
|
||||
..
|
||||
} = ctx
|
||||
else {
|
||||
unreachable!()
|
||||
};
|
||||
callback(ctx)
|
||||
}),
|
||||
))
|
||||
}
|
||||
fn remove_on_shuffle_wall(&self, callback: ShuffleWallCallbackId) {
|
||||
self.imp.remove_on_reducer("shuffle_wall", callback.0)
|
||||
}
|
||||
}
|
||||
|
||||
#[allow(non_camel_case_types)]
|
||||
#[doc(hidden)]
|
||||
/// Extension trait for setting the call-flags for the reducer `shuffle_wall`.
|
||||
///
|
||||
/// Implemented for [`super::SetReducerFlags`].
|
||||
///
|
||||
/// This type is currently unstable and may be removed without a major version bump.
|
||||
pub trait set_flags_for_shuffle_wall {
|
||||
/// Set the call-reducer flags for the reducer `shuffle_wall` to `flags`.
|
||||
///
|
||||
/// This type is currently unstable and may be removed without a major version bump.
|
||||
fn shuffle_wall(&self, flags: __ws::CallReducerFlags);
|
||||
}
|
||||
|
||||
impl set_flags_for_shuffle_wall for super::SetReducerFlags {
|
||||
fn shuffle_wall(&self, flags: __ws::CallReducerFlags) {
|
||||
self.imp.set_call_reducer_flags("shuffle_wall", flags);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue