pub struct CompiledTransactionV0 {
pub num_rw_signers: u8,
pub num_ro_signers: u8,
pub num_rw: u8,
pub accounts: Vec<Pubkey>,
pub instructions: Vec<CompiledInstructionV0>,
pub signer_seeds: Vec<Vec<Vec<u8>>>,
}
Fields§
§num_rw_signers: u8
§num_ro_signers: u8
§num_rw: u8
§accounts: Vec<Pubkey>
§instructions: Vec<CompiledInstructionV0>
§signer_seeds: Vec<Vec<Vec<u8>>>
Trait Implementations§
Source§impl BorshDeserialize for CompiledTransactionV0where
u8: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
Vec<CompiledInstructionV0>: BorshDeserialize,
Vec<Vec<Vec<u8>>>: BorshDeserialize,
impl BorshDeserialize for CompiledTransactionV0where
u8: BorshDeserialize,
Vec<Pubkey>: BorshDeserialize,
Vec<CompiledInstructionV0>: BorshDeserialize,
Vec<Vec<Vec<u8>>>: BorshDeserialize,
fn deserialize_reader<R: Read>(reader: &mut R) -> Result<Self, Error>
Source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
Source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
Source§impl BorshSerialize for CompiledTransactionV0where
u8: BorshSerialize,
Vec<Pubkey>: BorshSerialize,
Vec<CompiledInstructionV0>: BorshSerialize,
Vec<Vec<Vec<u8>>>: BorshSerialize,
impl BorshSerialize for CompiledTransactionV0where
u8: BorshSerialize,
Vec<Pubkey>: BorshSerialize,
Vec<CompiledInstructionV0>: BorshSerialize,
Vec<Vec<Vec<u8>>>: BorshSerialize,
Source§impl Clone for CompiledTransactionV0
impl Clone for CompiledTransactionV0
Source§fn clone(&self) -> CompiledTransactionV0
fn clone(&self) -> CompiledTransactionV0
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompiledTransactionV0
impl Debug for CompiledTransactionV0
Source§impl Default for CompiledTransactionV0
impl Default for CompiledTransactionV0
Source§fn default() -> CompiledTransactionV0
fn default() -> CompiledTransactionV0
Returns the “default value” for a type. Read more
Source§impl From<CompiledTransactionV0> for CompiledTransactionV0
impl From<CompiledTransactionV0> for CompiledTransactionV0
Source§fn from(value: CompiledTransactionV0) -> Self
fn from(value: CompiledTransactionV0) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CompiledTransactionV0
impl RefUnwindSafe for CompiledTransactionV0
impl Send for CompiledTransactionV0
impl Sync for CompiledTransactionV0
impl Unpin for CompiledTransactionV0
impl UnwindSafe for CompiledTransactionV0
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