equals
Returns true if this ZonedDateTime is equal to another (same instant, time zone, and calendar).
Parameters
- self:ZonedDateTime
- ZonedDateTime
- other:ZonedDateTime
- ZonedDateTime
Source
Implementation
pub fn equals(self: ZonedDateTime, other: ZonedDateTime) bool {
return abi.c.temporal_rs_ZonedDateTime_equals(self._inner, other._inner);
}