1 2 3 4 5
use anyhow::Result; pub trait Connection<T> { fn validate_connections(&self, potential_connections: &Option<Vec<String>>) -> Result<()>; }