#[cfg(feature = "serde")]
use serde::{Deserialize, Serialize};
use {
crate::{
extension::{BaseStateWithExtensions, Extension, ExtensionType, StateWithExtensionsMut},
state::Account,
},
bytemuck::{Pod, Zeroable},
solana_zero_copy::unaligned::Bool,
};
pub mod instruction;
#[repr(C)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
#[cfg_attr(feature = "serde", serde(rename_all = "camelCase"))]
#[derive(Clone, Copy, Debug, Default, PartialEq, Pod, Zeroable)]
pub struct CpiGuard {
pub lock_cpi: Bool,
}
impl Extension for CpiGuard {
const TYPE: ExtensionType = ExtensionType::CpiGuard;
}
pub fn cpi_guard_enabled(account_state: &StateWithExtensionsMut<Account>) -> bool {
if let Ok(extension) = account_state.get_extension::<CpiGuard>() {
return extension.lock_cpi.into();
}
false
}