Trait abstract_sdk::AbstractResponse

source ·
pub trait AbstractResponse: ModuleIdentification {
    // Provided methods
    fn response(&self, action: impl Into<String>) -> Response { ... }
    fn custom_response(
        &self,
        action: impl Into<String>,
        attributes: impl IntoIterator<Item = impl Into<Attribute>>
    ) -> Response { ... }
}
Expand description

Construct a Response with an abstract-specific event. The event contains the contract name and the action, and any additional attributes.

Provided Methods§

source

fn response(&self, action: impl Into<String>) -> Response

Respond with an abstract-specific event that contains the contract name and the action.

source

fn custom_response( &self, action: impl Into<String>, attributes: impl IntoIterator<Item = impl Into<Attribute>> ) -> Response

.response() with additional attributes.

Object Safety§

This trait is not object safe.

Implementors§