Struct lolid::Timestamp[][src]

pub struct Timestamp { /* fields omitted */ }
Expand description

Timestamp for use with v1 algorithm.

Implementations

Creates timestamp from raw parts, as per RFC4122.

  • ticks is number of 100-nanoseconds intervals elapsed since 15 Oct 1582 00:00:00.00.
  • counter is value used to differentiate between timestamps generated to avoid collision in case of rapid generation.

Creates instance from unix timestamp, namely it takes seconds and subsec_nanos.

Note it doesn’t set counter, if needed it must be set manually

Creates instance using current time, namely calculating duration since epoch.

Note it doesn’t set counter, if needed it must be set manually

Only available when std feature is enabled.

Sets counter to further avoid chance of collision between timestamps.

Useful if clock is not guaranteed to be monotonically increasing. Otherwise there is no benefit in setting the counter.

Retrieves timestamp as raw parts

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.