watchexec/crates/signals
github-actions[bot] efacb29f86
release: watchexec-signals v1.0.1 (#686)
Co-authored-by: github-actions <github-actions@github.com>
2023-11-26 03:29:53 +00:00
..
src Clippy nursery (#681) 2023-11-26 02:40:57 +00:00
CHANGELOG.md release: watchexec-signals v1.0.1 (#686) 2023-11-26 03:29:53 +00:00
Cargo.toml release: watchexec-signals v1.0.1 (#686) 2023-11-26 03:29:53 +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).