pub trait AccountUpdateExt {
// Required methods
fn is_full_account_data_ext(&self) -> bool;
fn to_account_ext(&self) -> Result<Option<Account>>;
fn apply_ext(self, account: &mut GetAccountResult) -> Result<()>;
fn expect_hex_data_ext(&self) -> Result<Vec<u8>>;
}Required Methods§
fn is_full_account_data_ext(&self) -> bool
fn to_account_ext(&self) -> Result<Option<Account>>
fn apply_ext(self, account: &mut GetAccountResult) -> Result<()>
fn expect_hex_data_ext(&self) -> Result<Vec<u8>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".