Struct kdb::Timestamp[][src]

#[repr(transparent)]pub struct Timestamp(_);

Represents a timestamp in KDB. Conversions between the Unix Epoch and the KDB Epoch are done automatically.

Implementations

impl Timestamp[src]

pub fn from_nanos_unix(n: u64) -> Timestamp[src]

Creates a timestamp from a count of nanoseconds in the unix epoch.

pub fn as_nanos_unix(&self) -> u64[src]

Converts the timestamp to the number of nanoseconds from the unix epoch and returns it.

pub fn as_raw(&self) -> i64[src]

Returns the raw timestamp stored as KDB values.

pub fn from_raw(nanos_since_millenium: i64) -> Timestamp[src]

Creates a timestamp based on a count of nanoseconds since 1 Jan 2000.

Trait Implementations

impl Clone for Timestamp[src]

impl Copy for Timestamp[src]

impl Debug for Timestamp[src]

impl Eq for Timestamp[src]

impl From<Atom<Timestamp>> for Timestamp[src]

impl From<SystemTime> for Timestamp[src]

impl From<i64> for Timestamp[src]

impl PartialEq<Timestamp> for Timestamp[src]

impl StructuralEq for Timestamp[src]

impl StructuralPartialEq for Timestamp[src]

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.