tafia / calamine

A pure Rust Excel/OpenDocument SpreadSheets file reader: rust on metal sheets
MIT License
1.61k stars 155 forks source link

Patrick dedication/add partial eq string slice to data type #306

Closed patrick-dedication closed 1 year ago

patrick-dedication commented 1 year ago

When writing test for our use-case we found that we can't do the following

let row = vec![DataType::String("value".to_string())];
assert_eq!(row, vec!["value"]);