pub trait ReverseLookupUpdater {
// Required methods
fn update(
&mut self,
pda_address: String,
seed_value: String,
) -> Vec<PendingAccountUpdate>;
fn flush_pending(&mut self, pda_address: &str) -> Vec<PendingAccountUpdate>;
}Required Methods§
fn update( &mut self, pda_address: String, seed_value: String, ) -> Vec<PendingAccountUpdate>
fn flush_pending(&mut self, pda_address: &str) -> Vec<PendingAccountUpdate>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".