pub type Result<T> = Result<T, DHTError>;
Result type used by the crate’s public APIs.
pub enum Result<T> { Ok(T), Err(DHTError), }
Contains the success value
Contains the error value