pub struct StoragePhaseContext<'a> {
pub adjust_msg_balance: bool,
pub received_message: Option<&'a mut ReceivedMessage>,
}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).
Auto Trait Implementations§
impl<'a> Freeze for StoragePhaseContext<'a>
impl<'a> !RefUnwindSafe for StoragePhaseContext<'a>
impl<'a> !Send for StoragePhaseContext<'a>
impl<'a> !Sync for StoragePhaseContext<'a>
impl<'a> Unpin for StoragePhaseContext<'a>
impl<'a> !UnwindSafe for StoragePhaseContext<'a>
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