pub struct AddressLookupTable {
pub account_key: [u8; 32],
pub writable_indexes: Vec<u8>,
pub readonly_indexes: Vec<u8>,
}Expand description
Address lookup table reference for versioned transactions.
Fields§
§account_key: [u8; 32]Account key of the lookup table.
writable_indexes: Vec<u8>Indices of writable accounts in the table.
readonly_indexes: Vec<u8>Indices of read-only accounts in the table.
Trait Implementations§
Source§impl Clone for AddressLookupTable
impl Clone for AddressLookupTable
Source§fn clone(&self) -> AddressLookupTable
fn clone(&self) -> AddressLookupTable
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 moreAuto Trait Implementations§
impl Freeze for AddressLookupTable
impl RefUnwindSafe for AddressLookupTable
impl Send for AddressLookupTable
impl Sync for AddressLookupTable
impl Unpin for AddressLookupTable
impl UnsafeUnpin for AddressLookupTable
impl UnwindSafe for AddressLookupTable
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