feat: v0.1.2, add now

This commit is contained in:
2021-06-11 00:23:45 +08:00
parent 2debea0491
commit de3fb3e2b8
3 changed files with 42 additions and 24 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
.idea/
# ---> Rust
# Generated by Cargo
# will have compiled files and executables

View File

@@ -1,6 +1,6 @@
[package]
name = "simpledateformat"
version = "0.1.1"
version = "0.1.2"
authors = ["Hatter Jiang <jht5945@gmail.com>"]
edition = "2018"
description = "SimpleDateFormat.java style like date format"

View File

@@ -1,4 +1,6 @@
#[macro_use] extern crate quick_error;
#[macro_use]
extern crate quick_error;
use chrono::prelude::*;
use std::{
convert::TryFrom,
@@ -79,6 +81,14 @@ pub fn format_human(d: Duration) -> String {
return_ret(ret)
}
pub fn get_local_now() -> DateTime<Local> {
Local::now()
}
pub fn get_utc_now() -> DateTime<Utc> {
Utc::now()
}
/// Format struct, parse format and format date
#[derive(Debug)]
pub struct SimpleDateFormat {
@@ -86,7 +96,6 @@ pub struct SimpleDateFormat {
}
impl SimpleDateFormat {
/// Create format from string
pub fn new(f: &str) -> Result<SimpleDateFormat, ParseError> {
fmt(f)
@@ -97,6 +106,14 @@ impl SimpleDateFormat {
Self::new(f).unwrap_or_else(|_| Self { parts: vec![] })
}
pub fn format_local_now(&self) -> String {
self.format(&Local::now())
}
pub fn format_utc_now(&self) -> String {
self.format(&Utc::now())
}
// Format date
/// ```ignore
/// let t = Utc.timestamp_millis(1590816448678);