Enum sp_core::traits::CallContext
source · pub enum CallContext {
Offchain,
Onchain,
}
Expand description
The context in which a call is done.
Depending on the context the executor may chooses different kind of heap sizes for the runtime instance.
Variants§
Offchain
The call is happening in some offchain context.
Onchain
The call is happening in some on-chain context like building or importing a block.
Trait Implementations§
source§impl Clone for CallContext
impl Clone for CallContext
source§fn clone(&self) -> CallContext
fn clone(&self) -> CallContext
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 Debug for CallContext
impl Debug for CallContext
source§impl Ord for CallContext
impl Ord for CallContext
source§fn cmp(&self, other: &CallContext) -> Ordering
fn cmp(&self, other: &CallContext) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<CallContext> for CallContext
impl PartialEq<CallContext> for CallContext
source§fn eq(&self, other: &CallContext) -> bool
fn eq(&self, other: &CallContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<CallContext> for CallContext
impl PartialOrd<CallContext> for CallContext
source§fn partial_cmp(&self, other: &CallContext) -> Option<Ordering>
fn partial_cmp(&self, other: &CallContext) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for CallContext
impl Eq for CallContext
impl StructuralEq for CallContext
impl StructuralPartialEq for CallContext
Auto Trait Implementations§
impl RefUnwindSafe for CallContext
impl Send for CallContext
impl Sync for CallContext
impl Unpin for CallContext
impl UnwindSafe for CallContext
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
Outer: AsRef<T> + AsMut<T> + From<T>,
T: From<Outer>,
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
The counterpart to
unchecked_from
.