WrpcView

Trait WrpcView 

Source
pub trait WrpcView: Send {
    type Invoke: Invoke;

    // Required method
    fn wrpc(&mut self) -> WrpcCtxView<'_, Self::Invoke>;
}

Required Associated Types§

Required Methods§

Source

fn wrpc(&mut self) -> WrpcCtxView<'_, Self::Invoke>

Implementations on Foreign Types§

Source§

impl<T: WrpcView> WrpcView for &mut T

Source§

type Invoke = <T as WrpcView>::Invoke

Source§

fn wrpc(&mut self) -> WrpcCtxView<'_, Self::Invoke>

Implementors§