pub trait WrpcView: Send {
type Invoke: Invoke;
// Required method
fn wrpc(&mut self) -> WrpcCtxView<'_, Self::Invoke>;
}Required Associated Types§
Required Methods§
fn wrpc(&mut self) -> WrpcCtxView<'_, Self::Invoke>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".