Would it be possible to parse Workbook Properties? I am not sure if they are inside of https://docs.rs/calamine/latest/calamine/struct.Xlsx.html#method.metadata?
e.g. I usually do something like this with openpyxl and it would be nice to do it with fastexcel instead.
wb = load_workbook(...)
author = wb.properties.creator
user = wb.properties.lastModifiedBy
Would it be possible to parse Workbook Properties? I am not sure if they are inside of https://docs.rs/calamine/latest/calamine/struct.Xlsx.html#method.metadata?
e.g. I usually do something like this with openpyxl and it would be nice to do it with fastexcel instead.