Macro rresult_return

Source
macro_rules! rresult_return {
    ( $x:expr ) => { ... };
}
Expand description

This macro is a helpful conversion utility to conver from a DataFusion Result to an abi_stable::RResult and to also call return when it is an error. Since you cannot use ? on an RResult, this is designed to mimic the pattern.