pub enum Nanoseconds {}
Expand description
A TimeResolution
implementation that preserves nanosecond
resolution. Internally, the number of microseconds is represented as an
i64
, allowing a range of +/- ~292.5 years.
Trait Implementations§
§impl Debug for Nanoseconds
impl Debug for Nanoseconds
§impl TimeResolution for Nanoseconds
impl TimeResolution for Nanoseconds
§type Representation = i64
type Representation = i64
The in-memory and serialized representation for this resolution.
§const FORMAT_SUFFIX: &'static str = "ns"
const FORMAT_SUFFIX: &'static str = "ns"
The label used when formatting times with this resolution.
§fn repr_to_duration(
value: <Nanoseconds as TimeResolution>::Representation
) -> Result<SignedDuration, TimeError>
fn repr_to_duration( value: <Nanoseconds as TimeResolution>::Representation ) -> Result<SignedDuration, TimeError>
Converts a
Self::Representation
to Duration
.§fn duration_to_repr(
duration: SignedDuration
) -> Result<<Nanoseconds as TimeResolution>::Representation, TimeError>
fn duration_to_repr( duration: SignedDuration ) -> Result<<Nanoseconds as TimeResolution>::Representation, TimeError>
Converts a
Duration
to Self::Representation
.Auto Trait Implementations§
impl RefUnwindSafe for Nanoseconds
impl Send for Nanoseconds
impl Sync for Nanoseconds
impl Unpin for Nanoseconds
impl UnwindSafe for Nanoseconds
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more