In the chrono crate I noticed this:
#[derive(Clone, PartialEq)]
pub struct ParseWeekdayError {
_dummy: (),
}
What's the purpose of this _dummy field?
In the chrono crate I noticed this:
#[derive(Clone, PartialEq)]
pub struct ParseWeekdayError {
_dummy: (),
}
What's the purpose of this _dummy field?