pub struct PdaNode {
pub account_name: String,
pub instruction_name: String,
pub seeds: Vec<PdaSeedInfo>,
}Expand description
A PDA node linking an account, its instruction context, and derivation seeds.
Fields§
§account_name: String§instruction_name: String§seeds: Vec<PdaSeedInfo>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PdaNode
impl RefUnwindSafe for PdaNode
impl Send for PdaNode
impl Sync for PdaNode
impl Unpin for PdaNode
impl UnsafeUnpin for PdaNode
impl UnwindSafe for PdaNode
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