reovim-client-model 0.14.4

Common client model for Reovim (platform-agnostic abstractions)
Documentation
//! Overlay synchronization mode.
//!
//! Controls whether overlays are local or shared between clients.

use serde::{Deserialize, Serialize};

/// Synchronization mode for overlays.
///
/// Determines whether an overlay is visible only to the local client
/// or shared with all clients in the session.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Default, Serialize, Deserialize)]
#[cfg_attr(feature = "wasm", derive(tsify_next::Tsify))]
#[cfg_attr(feature = "wasm", tsify(into_wasm_abi, from_wasm_abi))]
pub enum OverlaySyncMode {
    /// Overlay is local to this client.
    ///
    /// Only this client sees the overlay (e.g., local completion).
    #[default]
    Local,

    /// Overlay is shared with all clients.
    ///
    /// All clients in the session see the overlay (e.g., collaborative
    /// command palette, shared popup).
    Shared,
}

impl OverlaySyncMode {
    /// Check if this overlay is local only.
    #[must_use]
    pub const fn is_local(&self) -> bool {
        matches!(self, Self::Local)
    }

    /// Check if this overlay is shared.
    #[must_use]
    pub const fn is_shared(&self) -> bool {
        matches!(self, Self::Shared)
    }
}

#[cfg(test)]
#[path = "overlay_tests.rs"]
mod tests;