Macro server_fn_error
macro_rules! server_fn_error {
() => { ... };
($err:expr) => { ... };
}
👎Deprecated since 0.8.0: Now server_fn can return any error type other than ServerFnError, so the WrappedServerError variant will be removed in 0.9.0
Expand description
A helper macro to convert a variety of different types into ServerFnError
.
This should mostly be used if you are implementing From<ServerFnError>
for YourError
.