Per title, this implements PartialEq and Eq for Calendar and some corresponding components. This should allow us to bypass the equals method.
There is a question for API ergonomics whether we provide an explicit equals method, but I'm not entirely sure that's needed with the trait implementations and feels counterproductive to a Rust API.
Per title, this implements
PartialEq
andEq
forCalendar
and some corresponding components. This should allow us to bypass theequals
method.There is a question for API ergonomics whether we provide an explicit
equals
method, but I'm not entirely sure that's needed with the trait implementations and feels counterproductive to a Rust API.