pub enum SystemResult<S> {
Ok(S),
Err(SystemError),
}
Expand description
This is the outer result type returned by a querier to the contract.
We use a custom type here instead of Rust’s Result because we want to be able to define the serialization, which is a public interface. Every language that compiles to Wasm and runs in the ComsWasm VM needs to create the same JSON representation.
§Examples
Success:
let data = Binary::from(b"hello, world");
let result = SystemResult::Ok(ContractResult::Ok(data));
assert_eq!(to_vec(&result).unwrap(), br#"{"ok":{"ok":"aGVsbG8sIHdvcmxk"}}"#);
Failure:
let error = SystemError::Unknown {};
let result: SystemResult<Binary> = SystemResult::Err(error);
assert_eq!(to_vec(&result).unwrap(), br#"{"error":{"unknown":{}}}"#);
Variants§
Ok(S)
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> From<SystemResult<S>> for Result<S, SystemError>
impl<S> From<SystemResult<S>> for Result<S, SystemError>
Source§fn from(original: SystemResult<S>) -> Result<S, SystemError>
fn from(original: SystemResult<S>) -> Result<S, SystemError>
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 moreSource§impl<S: PartialEq> PartialEq for SystemResult<S>
impl<S: PartialEq> PartialEq for SystemResult<S>
Source§impl<S> Serialize for SystemResult<S>where
S: Serialize,
impl<S> Serialize for SystemResult<S>where
S: Serialize,
impl<S: Eq> Eq for SystemResult<S>
impl<S> StructuralPartialEq for SystemResult<S>
Auto Trait Implementations§
impl<S> Freeze for SystemResult<S>where
S: Freeze,
impl<S> RefUnwindSafe for SystemResult<S>where
S: RefUnwindSafe,
impl<S> Send for SystemResult<S>where
S: Send,
impl<S> Sync for SystemResult<S>where
S: Sync,
impl<S> Unpin for SystemResult<S>where
S: Unpin,
impl<S> UnwindSafe for SystemResult<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more