pub struct StoragePhaseContext<'a, 'e> {
pub adjust_msg_balance: bool,
pub received_message: Option<&'a mut ReceivedMessage>,
pub inspector: Option<&'a mut ExecutorInspector<'e>>,
}Expand description
Storage phase input context.
Fields§
§adjust_msg_balance: boolWhether to adjust remaining message balance if it becomes greater than the account balance.
received_message: Option<&'a mut ReceivedMessage>Received message (external or internal).
inspector: Option<&'a mut ExecutorInspector<'e>>Executor inspector.
Auto Trait Implementations§
impl<'a, 'e> !RefUnwindSafe for StoragePhaseContext<'a, 'e>
impl<'a, 'e> !Send for StoragePhaseContext<'a, 'e>
impl<'a, 'e> !Sync for StoragePhaseContext<'a, 'e>
impl<'a, 'e> !UnwindSafe for StoragePhaseContext<'a, 'e>
impl<'a, 'e> Freeze for StoragePhaseContext<'a, 'e>
impl<'a, 'e> Unpin for StoragePhaseContext<'a, 'e>
impl<'a, 'e> UnsafeUnpin for StoragePhaseContext<'a, 'e>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more