toml
[dependencies]
businessday_jp = "0.1.0"
```rust extern crate businessday_jp;
use businessday_jp::BusinessdayService;
fn main() { if HolidayService.is_businessday(2017, 1, 5, 2) { println!("businessday"); } } ```
BusinessdayService API
rust
fn is_businessday(&self, year: i32, month: u32, day: u32, at_businseeday: u32) -> bool;
fn get_businessday(&self, year: i32, month: u32, at_businessday: u32) -> DateTime<Local>;
This project is dual-licensed under MIT and Apache 2.0.