fret-runtime 0.1.0

Runtime abstractions and scheduling surfaces for host integration in Fret.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod helpers;
mod service;
mod snapshot;

#[cfg(test)]
mod tests;

pub use helpers::{
    best_effort_snapshot_for_window, best_effort_snapshot_for_window_with_input_ctx_fallback,
    command_is_enabled_for_window_with_input_ctx_fallback, snapshot_for_window,
    snapshot_for_window_with_input_ctx_fallback,
};
pub use service::{WindowCommandGatingHandle, WindowCommandGatingService};
pub use snapshot::WindowCommandGatingSnapshot;