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