1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#![cfg(feature = "chrono")]

use crate::{Context, SizeOf};
use chrono::{
    format::{
        Fixed, InternalFixed, InternalNumeric, Item, Numeric, Pad, ParseError, ParseErrorKind,
        Parsed,
    },
    Date, DateTime, Duration, FixedOffset, IsoWeek, Local, LocalResult, Month, Months, NaiveDate,
    NaiveDateTime, NaiveTime, NaiveWeek, ParseMonthError, ParseWeekdayError, RoundingError,
    SecondsFormat, TimeZone, Utc, Weekday,
};

impl_total_size_childless! {
    Pad,
    Utc,
    Local,
    Fixed,
    Month,
    Months,
    Parsed,
    Numeric,
    IsoWeek,
    Weekday,
    Duration,
    NaiveDate,
    NaiveTime,
    NaiveWeek,
    ParseError,
    FixedOffset,
    InternalFixed,
    NaiveDateTime,
    RoundingError,
    SecondsFormat,
    ParseErrorKind,
    ParseMonthError,
    InternalNumeric,
    ParseWeekdayError,
}

impl<Tz> SizeOf for Date<Tz>
where
    Tz: TimeZone,
    Tz::Offset: SizeOf,
{
    fn size_of_children(&self, context: &mut Context) {
        self.offset().size_of_children(context);
    }
}

impl<Tz> SizeOf for DateTime<Tz>
where
    Tz: TimeZone,
    Tz::Offset: SizeOf,
{
    fn size_of_children(&self, context: &mut Context) {
        self.offset().size_of_children(context);
    }
}

impl<T> SizeOf for LocalResult<T>
where
    T: SizeOf,
{
    fn size_of_children(&self, context: &mut Context) {
        match self {
            Self::None => {}
            Self::Single(result) => T::size_of_children(result, context),
            Self::Ambiguous(first, second) => {
                T::size_of_children(first, context);
                T::size_of_children(second, context);
            }
        }
    }
}

impl SizeOf for Item<'_> {
    fn size_of_children(&self, context: &mut Context) {
        match self {
            &Self::Literal(string) | &Self::Space(string) => string.size_of_children(context),
            Self::OwnedLiteral(string) | Self::OwnedSpace(string) => {
                string.size_of_children(context)
            }
            Self::Numeric(numeric, pad) => {
                numeric.size_of_children(context);
                pad.size_of_children(context);
            }
            Self::Fixed(fixed) => fixed.size_of_children(context),
            Self::Error => {}
        }
    }
}