| 8 | #[cfg(feature = "fetch")] |
| 9 | #[derive(Debug, Clone)] |
| 10 | pub struct DecodedAccount<T> { |
| 11 | pub address: solana_address::Address, |
| 12 | pub account: solana_account::Account, |
| 13 | pub data: T, |
| 14 | } |
| 15 | |
| 16 | #[cfg(feature = "fetch")] |
| 17 | #[derive(Debug, Clone)] |
nothing calls this directly
no outgoing calls
no test coverage detected