pub trait ExecuteEndpoint: Handler {
    type ExecuteMsg: Serialize + JsonSchema;

    fn execute(
        self,
        deps: DepsMut<'_>,
        env: Env,
        info: MessageInfo,
        msg: Self::ExecuteMsg
    ) -> Result<Response, Self::Error>; }

Required Associated Types§

Required Methods§

Entry point for contract execution

Implementors§