#[repr(C)]pub struct ProcessedInstructionAccount {
pub address: Address,
pub is_signer: bool,
pub is_writable: bool,
}Expand description
Account metadata returned by the sibling-instruction syscall.
This is an owned-address record, unlike CPI’s pointer-based metadata.
Fields§
§address: Address§is_signer: bool§is_writable: boolTrait Implementations§
Source§impl Clone for ProcessedInstructionAccount
impl Clone for ProcessedInstructionAccount
Source§impl Debug for ProcessedInstructionAccount
impl Debug for ProcessedInstructionAccount
impl Eq for ProcessedInstructionAccount
impl StructuralPartialEq for ProcessedInstructionAccount
Auto Trait Implementations§
impl Freeze for ProcessedInstructionAccount
impl RefUnwindSafe for ProcessedInstructionAccount
impl Send for ProcessedInstructionAccount
impl Sync for ProcessedInstructionAccount
impl Unpin for ProcessedInstructionAccount
impl UnsafeUnpin for ProcessedInstructionAccount
impl UnwindSafe for ProcessedInstructionAccount
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