[][src]Struct fantasy_util::time::system_time::SystemLocalTime

pub struct SystemLocalTime {}

Implementations

impl SystemLocalTime[src]

为了美观获取当前时间的包装实现

pub fn unix_nanos() -> u128[src]

获取当前的unix纳秒时间

Example

use fantasy_util::time::system_time::SystemLocalTime;
let nanos:u128 = SystemLocalTime::unix_nanos();

pub fn unix_micros() -> u128[src]

获取当前的unix微秒时间

Example

use fantasy_util::time::system_time::SystemLocalTime;
let micros:u128 = SystemLocalTime::unix_micros();

pub fn unix_mills() -> u64[src]

获取当前的unix毫秒时间

Example

use fantasy_util::time::system_time::SystemLocalTime;
let mills:u64 = SystemLocalTime::unix_mills();

pub fn unix_secs() -> u64[src]

获取当前的unix秒时间

Example

use fantasy_util::time::system_time::SystemLocalTime;
let mills:u64 = SystemLocalTime::unix_secs();

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.