businessday_jp

Crates.iobusinessday_jp
lib.rsbusinessday_jp
version0.1.1
sourcesrc
created_at2017-11-08 01:12:41.550482
updated_at2017-11-09 00:16:54.909294
descriptionbusinessday_jp
homepage
repositoryhttps://github.com/atsushi130/businessday-jp
max_upload_size
id38547
size17,718
Atsushi Miyake (atsushi130)

documentation

README

businessday-jp

MIT / Apache2.0 dual licensed crates.io Document

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.

Commit count: 7

cargo fmt