GithubHelp home page GithubHelp logo

Comments (5)

jhpratt avatar jhpratt commented on June 20, 2024

What feature flags do you have enabled?

from time.

loganmzz avatar loganmzz commented on June 20, 2024

I use: serde and serde-well-known

from time.

jhpratt avatar jhpratt commented on June 20, 2024

That can't be the case, as time::serde::format_description is enabled by the macros feature. Also note that the serde-well-known flag is deliberately undocumented, as it is deprecated in favor of using the documented flags directly (namely serde, formatting, and parsing).

Have you looked at the documentation for this macro? The final example shows how to use it with ISO 8601.

from time.

loganmzz avatar loganmzz commented on June 20, 2024

Ok, here is my test case.

  • Cargo.toml:
[dependencies]
serde = { version = "1.0.198", features = ["derive"] }
time = { version = "0.3.36", features = ["formatting", "macros", "parsing", "serde"] }

[dev-dependencies]
serde_json = { version = "1.0.116" }
  • lib.rs:
use time::{
    format_description::well_known::{iso8601, Iso8601},
    serde::format_description,
    OffsetDateTime,
};

const CONFIG: iso8601::EncodedConfig = iso8601::Config::DEFAULT
    .set_formatted_components(iso8601::FormattedComponents::DateTime)
    .encode();
const FORMAT: Iso8601<CONFIG> = Iso8601::<CONFIG>;
format_description!(serde_datetime, OffsetDateTime, FORMAT);

#[derive(serde::Deserialize, Debug, PartialEq)]
pub struct Container {
    #[serde(with="serde_datetime")]
    pub datetime: OffsetDateTime,
}
  • test:
use time::{
    Date,
    Month,
    OffsetDateTime,
    Time,
};

#[test]
fn without_offset() {
    let json = serde_json::json!({
        "datetime": "2024-04-17T12:45:00.0"
    });

    let actual: Container = serde_json::from_value(json).unwrap();

    assert_eq!(
        actual,
        Container {
            datetime: OffsetDateTime::new_utc(
                Date::from_calendar_date(2024, Month::April, 17).unwrap(),
                Time::from_hms(12, 45, 0).unwrap(),
            ),
        },
    );
}

Then, I got:

---- tests::without_offset stdout ----
thread 'tests::without_offset' panicked at 'called `Result::unwrap()` on an `Err` value: Error("the `Parsed` struct did not include enough information to construct the type", line: 0, column: 0)', src/lib.rs:36:62
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace

Worth to mention that error isn't very explicit :/

from time.

jhpratt avatar jhpratt commented on June 20, 2024

The failure is as expected, as there is no UtcOffset present in the formatted string. As such, an OffsetDateTime cannot be constructed.

I will look into what can be done in terms of an error message, but I suspect there isn't much.

from time.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.