pub trait DeserializeFromStr {
type Error;
// Required method
fn deserialize_from_str(value: &str) -> Result<Self, Self::Error>
where Self: Sized;
}
Expand description
For custom data parsing, ex. you want to convert the retrieved data (strings) to enums
Data in cells are not their type, they are simply strings that need to be converted.