pub struct FullTx {
pub slot: u64,
pub versioned: bool,
pub num_required_signatures: u32,
pub num_readonly_signed_accounts: u32,
pub num_readonly_unsigned_accounts: u32,
pub recent_blockhash: [u8; 32],
pub signatures: Vec<[u8; 64]>,
pub account_keys: Vec<[u8; 32]>,
pub instructions: Vec<FullInstruction>,
pub address_table_lookups: Vec<FullAtl>,
}Fields§
§slot: u64§versioned: bool§num_required_signatures: u32§num_readonly_signed_accounts: u32§num_readonly_unsigned_accounts: u32§recent_blockhash: [u8; 32]§signatures: Vec<[u8; 64]>§account_keys: Vec<[u8; 32]>§instructions: Vec<FullInstruction>§address_table_lookups: Vec<FullAtl>Trait Implementations§
impl Eq for FullTx
impl StructuralPartialEq for FullTx
Auto Trait Implementations§
impl Freeze for FullTx
impl RefUnwindSafe for FullTx
impl Send for FullTx
impl Sync for FullTx
impl Unpin for FullTx
impl UnsafeUnpin for FullTx
impl UnwindSafe for FullTx
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