carbon-stake-program-decoder 0.12.0

Stake Program Decoder
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use carbon_core::account::AccountDecoder;

use super::StakeProgramDecoder;

pub enum StakeProgramAccount {}

impl AccountDecoder<'_> for StakeProgramDecoder {
    type AccountType = StakeProgramAccount;
    fn decode_account(
        &self,
        _account: &solana_account::Account,
    ) -> Option<carbon_core::account::DecodedAccount<Self::AccountType>> {
        None
    }
}