Trait abstract_sdk::base::ReplyEndpoint

source ·
pub trait ReplyEndpoint: Handler {
    // Provided method
    fn reply(
        self,
        deps: DepsMut<'_>,
        env: Env,
        msg: Reply
    ) -> Result<Response, Self::Error> { ... }
}
Expand description

Trait for a contract’s Reply entry point.

Provided Methods§

source

fn reply( self, deps: DepsMut<'_>, env: Env, msg: Reply ) -> Result<Response, Self::Error>

Handler for the Reply endpoint.

Object Safety§

This trait is not object safe.

Implementors§