feat: v0.1.2, add now
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,3 +1,4 @@
|
|||||||
|
.idea/
|
||||||
# ---> Rust
|
# ---> Rust
|
||||||
# Generated by Cargo
|
# Generated by Cargo
|
||||||
# will have compiled files and executables
|
# will have compiled files and executables
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "simpledateformat"
|
name = "simpledateformat"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
authors = ["Hatter Jiang <jht5945@gmail.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "SimpleDateFormat.java style like date format"
|
description = "SimpleDateFormat.java style like date format"
|
||||||
|
|||||||
21
src/lib.rs
21
src/lib.rs
@@ -1,4 +1,6 @@
|
|||||||
#[macro_use] extern crate quick_error;
|
#[macro_use]
|
||||||
|
extern crate quick_error;
|
||||||
|
|
||||||
use chrono::prelude::*;
|
use chrono::prelude::*;
|
||||||
use std::{
|
use std::{
|
||||||
convert::TryFrom,
|
convert::TryFrom,
|
||||||
@@ -79,6 +81,14 @@ pub fn format_human(d: Duration) -> String {
|
|||||||
return_ret(ret)
|
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
|
/// Format struct, parse format and format date
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct SimpleDateFormat {
|
pub struct SimpleDateFormat {
|
||||||
@@ -86,7 +96,6 @@ pub struct SimpleDateFormat {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl SimpleDateFormat {
|
impl SimpleDateFormat {
|
||||||
|
|
||||||
/// Create format from string
|
/// Create format from string
|
||||||
pub fn new(f: &str) -> Result<SimpleDateFormat, ParseError> {
|
pub fn new(f: &str) -> Result<SimpleDateFormat, ParseError> {
|
||||||
fmt(f)
|
fmt(f)
|
||||||
@@ -97,6 +106,14 @@ impl SimpleDateFormat {
|
|||||||
Self::new(f).unwrap_or_else(|_| Self { parts: vec![] })
|
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
|
// Format date
|
||||||
/// ```ignore
|
/// ```ignore
|
||||||
/// let t = Utc.timestamp_millis(1590816448678);
|
/// let t = Utc.timestamp_millis(1590816448678);
|
||||||
|
|||||||
Reference in New Issue
Block a user