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