#[repr(C)]pub struct SimpleWalletBaseExecuteArgs {
pub header_ptr: NonNull<<TransactionHeader as IoType>::PointerType>,
pub header_size: NonNull<u32>,
pub read_slots_ptr: NonNull<<TxHandlerSlots as IoType>::PointerType>,
pub read_slots_size: NonNull<u32>,
pub write_slots_ptr: NonNull<<TxHandlerSlots as IoType>::PointerType>,
pub write_slots_size: NonNull<u32>,
pub payload_ptr: NonNull<<TxHandlerPayload as IoType>::PointerType>,
pub payload_size: NonNull<u32>,
pub seal_ptr: NonNull<<TxHandlerSeal as IoType>::PointerType>,
pub seal_size: NonNull<u32>,
}
Expand description
Data structure containing expected input for external method invocation, eventually calling simple_wallet_base_execute()
on the other side by the host.
This can be used with Env
, though there are helper methods on this provided by extension trait that allow not dealing with this struct directly in simpler cases.
Fields§
§header_ptr: NonNull<<TransactionHeader as IoType>::PointerType>
§header_size: NonNull<u32>
Size of the contents header_ptr
points to
read_slots_ptr: NonNull<<TxHandlerSlots as IoType>::PointerType>
§read_slots_size: NonNull<u32>
Size of the contents read_slots_ptr
points to
write_slots_ptr: NonNull<<TxHandlerSlots as IoType>::PointerType>
§write_slots_size: NonNull<u32>
Size of the contents write_slots_ptr
points to
payload_ptr: NonNull<<TxHandlerPayload as IoType>::PointerType>
§payload_size: NonNull<u32>
Size of the contents payload_ptr
points to
seal_ptr: NonNull<<TxHandlerSeal as IoType>::PointerType>
§seal_size: NonNull<u32>
Size of the contents seal_ptr
points to
Implementations§
Source§impl SimpleWalletBaseExecuteArgs
impl SimpleWalletBaseExecuteArgs
Sourcepub fn new(
header: &TransactionHeader,
read_slots: &TxHandlerSlots,
write_slots: &TxHandlerSlots,
payload: &TxHandlerPayload,
seal: &TxHandlerSeal,
) -> Self
pub fn new( header: &TransactionHeader, read_slots: &TxHandlerSlots, write_slots: &TxHandlerSlots, payload: &TxHandlerPayload, seal: &TxHandlerSeal, ) -> Self
Create a new instance
Trait Implementations§
Source§impl Debug for SimpleWalletBaseExecuteArgs
impl Debug for SimpleWalletBaseExecuteArgs
Source§impl ExternalArgs for SimpleWalletBaseExecuteArgs
impl ExternalArgs for SimpleWalletBaseExecuteArgs
Source§const FINGERPRINT: MethodFingerprint
const FINGERPRINT: MethodFingerprint
Fingerprint of the method being called
Auto Trait Implementations§
impl Freeze for SimpleWalletBaseExecuteArgs
impl RefUnwindSafe for SimpleWalletBaseExecuteArgs
impl !Send for SimpleWalletBaseExecuteArgs
impl !Sync for SimpleWalletBaseExecuteArgs
impl Unpin for SimpleWalletBaseExecuteArgs
impl UnwindSafe for SimpleWalletBaseExecuteArgs
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