pub struct VaultTransactionCreateArgs {
pub vault_index: u8,
pub ephemeral_signers: u8,
pub transaction_message: Vec<u8>,
pub memo: Option<String>,
}Fields§
§vault_index: u8Index of the vault this transaction belongs to.
ephemeral_signers: u8Number of ephemeral signing PDAs required by the transaction.
transaction_message: Vec<u8>§memo: Option<String>Trait Implementations§
source§impl BorshDeserialize for VaultTransactionCreateArgswhere
u8: BorshDeserialize,
Vec<u8>: BorshDeserialize,
Option<String>: BorshDeserialize,
impl BorshDeserialize for VaultTransactionCreateArgswhere u8: BorshDeserialize, Vec<u8>: BorshDeserialize, Option<String>: BorshDeserialize,
Auto Trait Implementations§
impl RefUnwindSafe for VaultTransactionCreateArgs
impl Send for VaultTransactionCreateArgs
impl Sync for VaultTransactionCreateArgs
impl Unpin for VaultTransactionCreateArgs
impl UnwindSafe for VaultTransactionCreateArgs
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