1//! This module contains examples of generated types, and their respective functions. 2#![allow(dead_code)] 3use super::*; 4 5alias_option!(OptionExample, Found, Missing); 6alias_either!(EitherExample, Good, Bad); 7alias_result!(ResultExample, Success, Failure);