Expand description
Implementation of the union!
macro.
Re-exports§
pub use crate::union::*;
Modules§
- expr_
chain - Contains
Chain
trait and implementation, expressions, groups and utils to work with all of them. - handler
Handler
defines handler function of 3 possible types:map
,and_then
andthen
.map
andand_then
will be evaluted in case of all successful results andthen
will be evaluated in any case, which allows user to define its own handlers for every error.- union
- Defines
Union
struct andgenerate_union
function to generate output of theunion!
macro based on input and given config.