pub trait IntoServerFnError {
// Required method
fn into_server_fn_error(self) -> ServerFnError;
}Available on
native and server and crate feature admin only.Expand description
Extension trait for converting AdminError to ServerFnError
Required Methods§
Sourcefn into_server_fn_error(self) -> ServerFnError
fn into_server_fn_error(self) -> ServerFnError
Convert AdminError to ServerFnError
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".