OpenAgentID documentation
Source referencesRust module referenceaegis-store-pg

aegis-store-pg · delegations

Declared module signatures, types, configuration, and source documentation.

Source: aegis/aegis-store-pg/src/delegations.rs. SHA-256: 680f56788d96f0965c598ef298a9899b1e3cee93a739af9b386bd568dff7834e.

This source reference follows declared modules and preserves feature attributes. It includes public declarations and implementation methods in those modules. Private-module exports and trait resolution still require the compiler; not every declaration is a crate-root import. Function bodies and constant values are omitted. Source comments describe their implementation context and are not a production deployment claim.

delegations::PgDelegationStore

PostgreSQL-backed delegation store.

Stores Delegation records in the aegis_delegations table. The scope and proof fields are serialized as JSONB columns.

pub struct PgDelegationStore {

}

Source line: 18.

delegations::PgDelegationStore::new

Create a new PostgreSQL delegation store with the given connection pool.

pub fn new(pool: PgPool) -> Self;

Source line: 24.

On this page