[][src]Struct mantle::exe::Context

pub struct Context { /* fields omitted */ }

The context of the current RPC.

Methods

impl Context[src]

pub fn delegated() -> Self[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<V: Into<U256>>(self, value: V) -> Self[src]

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

pub fn with_gas<V: Into<U256>>(self, gas: V) -> Self[src]

Sets the amount of computation resources available to the callee. Payed for by the payer of the Context.

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

Returns the Address of the sender of the current RPC.

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

Returns the Address of the currently executing service. Panics if not currently in a service.

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

Returns the value with which this Context was created.

pub fn gas_left(&self) -> U256[src]

Returns the remaining gas allocated to this transaction.

Trait Implementations

impl Default for Context[src]

impl Clone for Context[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Context[src]

impl Debug for Context[src]

Auto Trait Implementations

impl Send for Context

impl Sync for Context

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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