punybuf_common 0.6.0

A crate for the common Punybuf types.
Documentation
1
2
3
4
5
6
7
8
9
#[macro_export]
macro_rules! const_unwrap {
    ($e:expr $(,)?) => {
        match $e {
            Ok(x) => x,
            Err(_) => panic!("invalid env variables"),
        }
    };
}