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

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

Required methods

Provided methods

Implementors