feature_macros

This crate allows for controling how safe/unsafe other crates are.

Example

This macro can (but should not necessarily) be used identically to unreachable! or panic!.

```rust

match x {
    Foo::Bar => bar(&x),
    Foo::Baz => baz(&x),
    _ => inconceivable!(),
}

```

Developer Controllable Options

Developer Uncontrollable Options