fn from_str()

in azure-kusto-data/src/types.rs [22:26]


    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Ok(OffsetDateTime::parse(s, &Rfc3339)
            .map(KustoDateTime)
            .context(ErrorKind::DataConversion, "Failed to parse KustoDateTime")?)
    }