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