[][src]Struct oasis_std::exe::Context

pub struct Context { /* fields omitted */ }

The context of the current RPC. To create a Context, use Context::default(). The default Context will have its sender be the address of the current service or, when testing, the sender set by Context::with_sender.

You can use Context::with_value to transfer native tokens along with the call.

Methods

impl Context[src]

pub fn with_gas(self, gas: u64) -> Self[src]

Sets the amount of computation resources available to the callee. Has no effect when called inside of a service.

pub fn sender(&self) -> Address[src]

Returns the Address of the sender of the current RPC.

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

Returns the AAD of the confidential execution.

pub fn value(&self) -> Balance[src]

Returns the value with which this Context was created.

impl Context[src]

pub fn with_sender(self, sender: Address) -> Self[src]

Sets the sender of the RPC receiving this Context as an argument. Has no effect when called inside of a service.

pub fn with_value<B: Into<Balance>>(self, value: B) -> Self[src]

Amends a Context with the value that should be transferred to the callee.

Trait Implementations

impl Clone for Context[src]

impl Copy for Context[src]

impl Debug for Context[src]

impl Default for Context[src]

Auto Trait Implementations

impl RefUnwindSafe for Context

impl Send for Context

impl Sync for Context

impl Unpin for Context

impl UnwindSafe for Context

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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