carbon_stake_program_decoder/accounts/mod.rs
1use carbon_core::account::AccountDecoder;
2
3use super::StakeProgramDecoder;
4
5pub enum StakeProgramAccount {}
6
7impl AccountDecoder<'_> for StakeProgramDecoder {
8 type AccountType = StakeProgramAccount;
9 fn decode_account(
10 &self,
11 _account: &solana_account::Account,
12 ) -> Option<carbon_core::account::DecodedAccount<Self::AccountType>> {
13 None
14 }
15}