[][src]Trait fxa_email_service::db::auth_db::Db

pub trait Db: Debug + Sync {
    fn get_bounces(
        &self,
        address: &EmailAddress
    ) -> AppResult<Vec<DeliveryProblem>>; fn create_bounce(
        &self,
        _address: &EmailAddress,
        _problem_type: ProblemType,
        _problem_subtype: ProblemSubtype
    ) -> AppResult<()> { ... } }

Required Methods

Provided Methods

Implementors

impl Db for DbClient
[src]