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§
Ok(ContractResult<Binary>)
Err(SystemError)
Implementations
source§impl<S> SystemResult<S>
impl<S> SystemResult<S>
sourcepub fn into_result(self) -> Result<S, SystemError>
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.
pub fn unwrap(self) -> S
source§impl<S: Debug> SystemResult<S>
impl<S: Debug> SystemResult<S>
pub fn unwrap_err(self) -> SystemError
Trait Implementations
source§impl<S: Clone> Clone for SystemResult<S>
impl<S: Clone> Clone for SystemResult<S>
source§fn clone(&self) -> SystemResult<S>
fn clone(&self) -> SystemResult<S>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<S: Debug> Debug for SystemResult<S>
impl<S: Debug> Debug for SystemResult<S>
source§impl<'de, S> Deserialize<'de> for SystemResult<S>where
S: Deserialize<'de>,
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>,
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>
impl<S> From<Result<S, SystemError>> for SystemResult<S>
source§fn from(original: Result<S, SystemError>) -> SystemResult<S>
fn from(original: Result<S, SystemError>) -> SystemResult<S>
Converts to this type from the input type.
source§impl<S: JsonSchema> JsonSchema for SystemResult<S>
impl<S: JsonSchema> JsonSchema for SystemResult<S>
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn schema_id() -> Cow<'static, str>
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
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read more