businessday-jp

MIT / Apache2.0 dual licensed crates.io Document

dependencies

toml [dependencies] businessday_jp = "0.1.1"

Usage

```rust extern crate businessday_jp; extern crate chrono;

use businessday_jp::BusinessdayService; use chrono::{Local, TimeZone};

fn main() { let date = Local::now(); if HolidayService.is_businessday(date, 2) { println!("businessday"); } } ```

BusinessdayService API rust fn is_businessday(&self, date: DateTime<Local>, at_businseeday: u32) -> bool; fn get_businessday(&self, year: i32, month: u32, at_businessday: u32) -> DateTime<Local>;

License

This project is dual-licensed under MIT and Apache 2.0.