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