Trait solana_accountsdb_plugin_postgres::postgres_client::PostgresClient[][src]

pub trait PostgresClient {
    fn update_account(
        &mut self,
        account: DbAccountInfo,
        is_startup: bool
    ) -> Result<(), AccountsDbPluginError>;
fn update_slot_status(
        &mut self,
        slot: u64,
        parent: Option<u64>,
        status: SlotStatus
    ) -> Result<(), AccountsDbPluginError>;
fn notify_end_of_startup(&mut self) -> Result<(), AccountsDbPluginError>; fn join(&mut self) -> Result<()> { ... } }

Required methods

Provided methods

Implementors