fret_runtime/window_command_gating/mod.rs
1mod helpers;
2mod service;
3mod snapshot;
4
5#[cfg(test)]
6mod tests;
7
8pub use helpers::{
9 best_effort_snapshot_for_window, best_effort_snapshot_for_window_with_input_ctx_fallback,
10 command_is_enabled_for_window_with_input_ctx_fallback, snapshot_for_window,
11 snapshot_for_window_with_input_ctx_fallback,
12};
13pub use service::{WindowCommandGatingHandle, WindowCommandGatingService};
14pub use snapshot::WindowCommandGatingSnapshot;