15 个版本
0.1.17 | 2021 年 11 月 16 日 |
---|---|
0.1.16 | 2021 年 11 月 15 日 |
0.1.15 | 2021 年 6 月 26 日 |
0.1.14 | 2020 年 4 月 28 日 |
#324 在 日期和时间
每月下载 28 次
10KB
146 行
主函数
impl UtcDatetime{
fn new(year:u16,month:u8,day:u8,hour:u8,minute:u8,second:u8)->Result<UTCDatetime, IllegalTimeError>;
fn timestamp(&self)->Result<u32,IllegalTimeError>;
fn weekday(&self)->u8;
fn from_string(time_str:&str)->Result<UTCDatetime, IllegalTimeError>;
}
UTCDatetime 结构体继承了 PartialEq 和 PartialOrd,可以直接使用 <,>, ==, <=,>=,!= 进行比较。