1 2 3 4 5 6 7 8 9
use crate::error::Error; pub type Result<T> = std::result::Result<T, Error>; pub mod cql { use crate::error::cql; pub type Result<T> = std::result::Result<T, cql::Error>; }