[−][src]Struct oasis_std::exe::Context
The context of the current RPC.
To create a Context, use Context::default() or Context::delegated().
The default Context will have its sender be the address of the current service
or, when testing, the sender set by Context::with_sender. A delegated Context
sets the sender to the address of the caller; this is similar to Ethereum's DELEGATECALL.
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 address(&self) -> Address[src]
Returns the Address of the currently executing service.
Panics if not called from within a service 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 Default for Context[src]
impl Debug for Context[src]
Auto Trait Implementations
impl Send for Context
impl Sync for Context
impl Unpin for Context
impl UnwindSafe for Context
impl RefUnwindSafe for Context
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,