[−][src]Struct druid_shell::Counter
An incrementing counter for generating unique ids.
This can be used safely from multiple threads.
The counter will overflow if next()
is called 2^64 - 2 times.
If this is possible for your application, and reuse would be undesirable,
use something else.
Implementations
impl Counter
[src]
pub const fn new() -> Counter
[src]
Create a new counter.
pub const unsafe fn new_unchecked(init: u64) -> Counter
[src]
pub fn next(&self) -> u64
[src]
Return the next value.
pub fn next_nonzero(&self) -> NonZeroU64
[src]
Return the next value, as a NonZeroU64
.
Auto Trait Implementations
impl RefUnwindSafe for Counter
impl Send for Counter
impl Sync for Counter
impl Unpin for Counter
impl UnwindSafe for Counter
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> RoundFrom<T> for T
fn round_from(x: T) -> T
impl<T, U> RoundInto<U> for T where
U: RoundFrom<T>,
U: RoundFrom<T>,
fn round_into(self) -> U
impl<T> Sealed<T> for T where
T: ?Sized,
T: ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,