2 个版本

使用旧的 Rust 2015

0.1.1 2017年11月9日
0.1.0 2017年11月8日

#456日期和时间

MIT/Apache

7KB

businessday-jp

MIT / Apache2.0 dual licensed crates.io Document

依赖项

[dependencies]
businessday_jp = "0.1.1"

用法

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>;

许可证

此项目同时使用 MIT 和 Apache 2.0 许可证。

依赖项

~5–15MB
~200K SLoC