pub struct RuntimeBatchContext<'a, R: Runtime> { /* private fields */ }
Expand description

Dispatch context for the whole batch.

Implementations§

source§

impl<'a, R: Runtime> RuntimeBatchContext<'a, R>

source

pub fn new( host_info: &'a HostInfo, key_manager: Option<Box<dyn KeyManager>>, runtime_header: &'a Header, runtime_round_results: &'a RoundResults, consensus_state: &'a ConsensusState, history: &'a dyn HistoryHost, epoch: EpochTime, max_messages: u32 ) -> Self

Create a new dispatch context.

Trait Implementations§

source§

impl<'a, R: Runtime> Context for RuntimeBatchContext<'a, R>

§

type Runtime = R

Runtime that the context is being invoked in.
source§

fn clone(&self) -> Self

Clone this context.
source§

fn get_logger(&self, module: &'static str) -> Logger

Returns a logger.
source§

fn host_info(&self) -> &HostInfo

Information about the host environment.
source§

fn key_manager(&self) -> Option<&dyn KeyManager>

The key manager, if the runtime is confidential.
source§

fn runtime_header(&self) -> &Header

Last runtime block header.
source§

fn runtime_round_results(&self) -> &RoundResults

Results of executing the last successful runtime round.
source§

fn consensus_state(&self) -> &ConsensusState

Consensus state.
source§

fn history(&self) -> &dyn HistoryHost

Historical state.
source§

fn epoch(&self) -> EpochTime

Current epoch.
source§

fn max_messages(&self) -> u32

Maximum number of consensus messages that the runtime can emit in this block.
source§

fn should_execute_contracts(&self) -> bool

Whether smart contracts should be executed in this context.
source§

fn is_allowed_query<R: Runtime>(&self, method: &str) -> bool

Whether method is an allowed query per policy in the local config.
source§

fn local_config<T>(&self, key: &str) -> Option<T>
where T: Decode,

Returns node operator-provided local configuration. Read more
source§

fn runtime_id(&self) -> &Namespace

Runtime ID.
source§

fn is_confidential(&self) -> bool

Whether the context has a key manager available (e.g. the runtime is confidential).

Auto Trait Implementations§

§

impl<'a, R> !RefUnwindSafe for RuntimeBatchContext<'a, R>

§

impl<'a, R> !Send for RuntimeBatchContext<'a, R>

§

impl<'a, R> !Sync for RuntimeBatchContext<'a, R>

§

impl<'a, R> Unpin for RuntimeBatchContext<'a, R>
where R: Unpin,

§

impl<'a, R> !UnwindSafe for RuntimeBatchContext<'a, R>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T, E> AsTaggedExplicit<'a, E> for T
where T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self, E>

§

impl<'a, T, E> AsTaggedImplicit<'a, E> for T
where T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self, E>

source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V