Type Alias cosmwasm_std::testing::MockQuerierCustomHandlerResult

source ·
pub type MockQuerierCustomHandlerResult = SystemResult<ContractResult<Binary>>;
Expand description

The same type as cosmwasm-std’s QuerierResult, but easier to reuse in cosmwasm-vm. It might diverge from QuerierResult at some point.

Aliased Type§

enum MockQuerierCustomHandlerResult {
    Ok(ContractResult<Binary>),
    Err(SystemError),
}

Variants§

Implementations

source§

impl<S> SystemResult<S>

source

pub fn into_result(self) -> Result<S, SystemError>

Converts a ContractResult<S> to a Result<S, SystemError> as a convenient way to access the full Result API.

source

pub fn unwrap(self) -> S

source§

impl<S: Debug> SystemResult<S>

Trait Implementations

source§

impl<S: Clone> Clone for SystemResult<S>

source§

fn clone(&self) -> SystemResult<S>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<S: Debug> Debug for SystemResult<S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, S> Deserialize<'de> for SystemResult<S>
where S: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<S> From<Result<S, SystemError>> for SystemResult<S>

source§

fn from(original: Result<S, SystemError>) -> SystemResult<S>

Converts to this type from the input type.
source§

impl<S: JsonSchema> JsonSchema for SystemResult<S>

source§

fn schema_name() -> String

The name of the generated JSON Schema. Read more
source§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
source§

fn is_referenceable() -> bool

Whether JSON Schemas generated for this type should be re-used where possible using the $ref keyword. Read more
source§

impl<S: PartialEq> PartialEq for SystemResult<S>

source§

fn eq(&self, other: &SystemResult<S>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<S> Serialize for SystemResult<S>
where S: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<S: Eq> Eq for SystemResult<S>

source§

impl<S> StructuralPartialEq for SystemResult<S>