Struct near_sdk_sim::ViewResult[][src]

pub struct ViewResult { /* fields omitted */ }

The result of a view call. Contains the logs made during the view method call and Result value, which can be unwrapped and deserialized.

Implementations

impl ViewResult[src]

pub fn new(result: Result<Vec<u8>, Box<dyn Error>>, logs: Vec<String>) -> Self[src]

pub fn logs(&self) -> &Vec<String>[src]

Logs made during the view call

pub fn is_err(&self) -> bool[src]

pub fn is_ok(&self) -> bool[src]

pub fn unwrap(&self) -> Vec<u8>[src]

Attempt unwrap the value returned by the view call and panic if it is an error

pub fn unwrap_err(&self) -> &dyn Error[src]

pub fn unwrap_json_value(&self) -> Value[src]

Interpret the value as a JSON::Value

pub fn unwrap_borsh<T: BorshDeserialize>(&self) -> T[src]

Deserialize the value with Borsh

pub fn unwrap_json<T: DeserializeOwned>(&self) -> T[src]

Deserialize the value with JSON

Trait Implementations

impl Debug for ViewResult[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,