carbon_spl_associated_token_account_decoder/accounts/
mod.rs

1use super::SplAssociatedTokenAccountDecoder;
2use carbon_core::account::AccountDecoder;
3
4pub enum SplAssociatedTokenAccountAccount {}
5
6impl AccountDecoder<'_> for SplAssociatedTokenAccountDecoder {
7    type AccountType = SplAssociatedTokenAccountAccount;
8    fn decode_account(
9        &self,
10        _account: &solana_sdk::account::Account,
11    ) -> Option<carbon_core::account::DecodedAccount<Self::AccountType>> {
12        None
13    }
14}