Related to ongoing work for #13.
The method GetTimeZoneTransition needs to be implemented for ZonedDateTime.
This may involve extending the TzProvider trait and implementing that extension on FsTzdbProvider.
Initial thought on how the implementation may look would be to add the method like below:
trait TimeZoneProvider {
// ...
// Existing trait methods
fn get_timezone_transition(&self, epoch_nanoseconds: i128, direction: TransitionDirection) -> EpochNanoseconds;
}
Related to ongoing work for #13.
The method
GetTimeZoneTransitionneeds to be implemented forZonedDateTime.This may involve extending the
TzProvidertrait and implementing that extension onFsTzdbProvider.Initial thought on how the implementation may look would be to add the method like below: