2 releases
Uses old Rust 2015
0.1.1 | Nov 9, 2017 |
---|---|
0.1.0 | Nov 8, 2017 |
#456 in Date and time
7KB
businessday-jp
dependencies
[dependencies]
businessday_jp = "0.1.1"
Usage
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
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.
Dependencies
~5–15MB
~200K SLoC