Available on crate feature
core only.Expand description
Low level time utilities.
Structs§
- NSTD
Duration - Represents a span of time.
Functions§
- nstd_
core_ time_ duration_ add - Computes the addition of two time spans.
- nstd_
core_ time_ duration_ get - Returns the number of seconds stored in an
NSTDDurationas anNSTDFloat64. - nstd_
core_ time_ duration_ nanoseconds - Returns the number of nanoseconds in an
NSTDDurationobject. - nstd_
core_ time_ duration_ new - Creates a new
NSTDDurationobject from anNSTDFloat64representing the duration in seconds. - nstd_
core_ time_ duration_ seconds - Returns the number of seconds in an
NSTDDurationobject. - nstd_
core_ time_ duration_ sub - Computes the subtraction between two time spans.
Type Aliases§
- NSTD
Optional Duration - Represents an optional value of type
NSTDDuration.