Crate watchexec_signals

source ·
Expand description

§watchexec-signals

Watchexec’s signal type.

use std::str::FromStr;
use watchexec_signals::Signal;

fn main() {
    assert_eq!(Signal::from_str("SIGINT").unwrap(), Signal::Interrupt);
}

§Features

  • serde: enables serde support.
  • fromstr: enables FromStr support (default).
  • miette: enables miette (rich diagnostics) support (default).

Structs§

Enums§

  • A notification (signals or Windows control events) sent to a process.