pub trait ToAccountInfos<'info> {
// Required method
fn to_account_infos(&self) -> Vec<AccountInfo<'info>>;
}Expand description
Transformation to
AccountInfo
structs.
Required Methods§
fn to_account_infos(&self) -> Vec<AccountInfo<'info>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".