macro_rules! render_unwrap {
($data:expr) => { ... };
}Expand description
render_unwrap!() safely renders a Data struct into a string.
If the Data is failed or empty, the data is immediately returned. Because of this,
this macro can only be used in functions that return Data.