1 2 3 4 5
use crate::domain::connection::ConnectionProfile; pub trait DsnBuilder: Send + Sync { fn build_dsn(&self, profile: &ConnectionProfile) -> String; }