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