pub type Result<T> = Result<T, CpdbError>;
Shorthand Result alias used throughout the crate.
Result
pub enum Result<T> { Ok(T), Err(CpdbError), }
Contains the success value
Contains the error value