Macro baxe_error

Source
macro_rules! baxe_error {
    ( $error_tag_ty:ty, $($extra_attr:meta),* ) => { ... };
}
Expand description

Macro that creates the BaxeError type.

ยงExamples

baxe_error!(Tags, serde(rename_all = "camelCase"), derive(Clone));
baxe_error!(String, serde(rename_all = "camelCase"));
baxe_error!(String,);