ZIm/crates/gpui/src/platform/linux/client_dispatcher.rs
Roman 266988adea
gpui: Decouple X11 logic from LinuxPlatform (#7598)
Release Notes:

- Separated Linux platform and X11-specific code, so that we can add
Wayland support now.

---------

Co-authored-by: Mikayla <mikayla@zed.dev>
2024-02-12 10:44:34 -08:00

3 lines
83 B
Rust

pub trait ClientDispatcher: Send + Sync {
fn dispatch_on_main_thread(&self);
}