pub struct NoContext;
Expand description
An empty counter that will always return the value 0
.
This type can be used when constructing version 7 UUIDs. When used to construct a version 7 UUID, the entire counter segment of the UUID will be filled with a random value. This type does not maintain ordering of UUIDs within a millisecond but is efficient.
This type should not be used when constructing version 1 or version 6 UUIDs. When used to construct a version 1 or version 6 UUID, the counter segment will remain zero.
Trait Implementationsยง
Sourceยงimpl ClockSequence for NoContext
impl ClockSequence for NoContext
Sourceยงfn generate_sequence(
&self,
_seconds: u64,
_nanos: u32,
) -> <NoContext as ClockSequence>::Output
fn generate_sequence( &self, _seconds: u64, _nanos: u32, ) -> <NoContext as ClockSequence>::Output
Get the next value in the sequence to feed into a timestamp. Read more
Sourceยงfn usable_bits(&self) -> usize
fn usable_bits(&self) -> usize
The number of usable bits from the least significant bit in the result of
ClockSequence::generate_sequence
or ClockSequence::generate_timestamp_sequence
. Read moreimpl Copy for NoContext
Auto Trait Implementationsยง
impl Freeze for NoContext
impl RefUnwindSafe for NoContext
impl Send for NoContext
impl Sync for NoContext
impl Unpin for NoContext
impl UnwindSafe for NoContext
Blanket Implementationsยง
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self> โ
fn into_either(self, into_left: bool) -> Either<Self, Self> โ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more