pub type Result<T> = Result<T, DHTError>;
pub enum Result<T> { Ok(T), Err(DHTError), }
Contains the success value
Contains the error value