confium 0.2.0

Open-source distributed trust store framework
Documentation
1
2
3
4
5
6
7
8
9
10
macro_rules! check_not_null {
    ($param:ident) => {{
        if $param.is_null() {
            return Err($crate::error::NullPointerSnafu {
                param: stringify!($param),
            }
            .build());
        }
    }};
}