Trait irox_time::format::FormatParser
source · pub trait FormatParser {
type Item;
// Required method
fn try_from(&self, data: &str) -> Result<Self::Item, FormatError>;
}Expand description
Provides a mechanism to parse a date or time from a string.