pub trait ReceiveEndpoint: Handler {
    fn handle_receive(
        self,
        deps: DepsMut<'_>,
        env: Env,
        info: MessageInfo,
        msg: <Self as Handler>::ReceiveMsg
    ) -> Result<Response, <Self as Handler>::Error> { ... } }

Provided Methods§

Implementors§