oxsdatatypes/
lib.rs

1#![doc = include_str!("../README.md")]
2#![doc(test(attr(deny(warnings))))]
3#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4#![doc(html_favicon_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
5#![doc(html_logo_url = "https://raw.githubusercontent.com/oxigraph/oxigraph/main/logo.svg")]
6
7mod boolean;
8mod date_time;
9mod decimal;
10mod double;
11mod duration;
12mod float;
13mod integer;
14
15pub use self::boolean::Boolean;
16pub use self::date_time::{
17    Date, DateTime, DateTimeOverflowError, GDay, GMonth, GMonthDay, GYear, GYearMonth,
18    InvalidTimezoneError, ParseDateTimeError, Time, TimezoneOffset,
19};
20pub use self::decimal::{Decimal, ParseDecimalError, TooLargeForDecimalError};
21pub use self::double::Double;
22pub use self::duration::{
23    DayTimeDuration, Duration, DurationOverflowError, OppositeSignInDurationComponentsError,
24    ParseDurationError, YearMonthDuration,
25};
26pub use self::float::Float;
27pub use self::integer::{Integer, TooLargeForIntegerError};