hexavalent 0.3.0

Write HexChat plugins in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Sending modes.

/// Whether to add or remove a mode.
///
/// Used with [`PluginHandle::send_modes`](crate::PluginHandle::send_modes).
#[non_exhaustive]
#[derive(Debug, Copy, Clone)]
pub enum Sign {
    /// Add the mode.
    Add,
    /// Remove the mode.
    Remove,
}