watchexec/crates/signals
github-actions[bot] d6ae98e644
release: watchexec-signals v1.0.0 (#532)
Co-authored-by: github-actions <github-actions@github.com>
2023-03-18 11:09:41 +00:00
..
src Fix and adjust docs (#530) 2023-03-18 10:23:46 +00:00
CHANGELOG.md release: watchexec-signals v1.0.0 (#532) 2023-03-18 11:09:41 +00:00
Cargo.toml release: watchexec-signals v1.0.0 (#532) 2023-03-18 11:09:41 +00:00
README.md Fix and adjust docs (#530) 2023-03-18 10:23:46 +00:00
release.toml --emit-events-to (#515) 2023-03-18 21:32:24 +13:00

README.md

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).