[−][src]Struct snowflake::ProcessUniqueId
Process unique IDs are guaranteed to be unique within the current process, for the lifetime of the current process.
- ID creation should be highly performant even on highly concurrent systems. It's MUCH faster than using random/time based IDs (but, on the other hand, only unique within a process).
- While this crate can run out of process unique IDs, this is very unlikely assuming a sane threading model and will panic rather than potentially reusing unique IDs.
Limits
The unique ID's are sizeof(usize) + 64 bits wide and are generated by combining a usize
global counter value with a 64bit thread local offset. This is important because each thread
that calls new() at least once will reserve at least 2^64 IDs. So, the only way to run out of
IDs in a reasonable amount of time is to run a 32bit system, spawn 2^32 threads, and claim one
ID on each thread. You might be able to do this on a 64bit system but it would take a while...
TL; DR: Don't create unique IDs from over 4 billion different threads on a 32bit system.
Methods
impl ProcessUniqueId[src]
impl ProcessUniqueIdpub fn new() -> Self[src]
pub fn new() -> SelfCreate a new unique ID.
panics if there are no more unique IDs available. If this happens, go home and reevaluate your threading model!
Trait Implementations
impl Ord for ProcessUniqueId[src]
impl Ord for ProcessUniqueIdfn cmp(&self, other: &ProcessUniqueId) -> Ordering[src]
fn cmp(&self, other: &ProcessUniqueId) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl Copy for ProcessUniqueId[src]
impl Copy for ProcessUniqueIdimpl Clone for ProcessUniqueId[src]
impl Clone for ProcessUniqueIdfn clone(&self) -> ProcessUniqueId[src]
fn clone(&self) -> ProcessUniqueIdReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl PartialOrd<ProcessUniqueId> for ProcessUniqueId[src]
impl PartialOrd<ProcessUniqueId> for ProcessUniqueIdfn partial_cmp(&self, other: &ProcessUniqueId) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &ProcessUniqueId) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &ProcessUniqueId) -> bool[src]
fn lt(&self, other: &ProcessUniqueId) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &ProcessUniqueId) -> bool[src]
fn le(&self, other: &ProcessUniqueId) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &ProcessUniqueId) -> bool[src]
fn gt(&self, other: &ProcessUniqueId) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &ProcessUniqueId) -> bool[src]
fn ge(&self, other: &ProcessUniqueId) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Eq for ProcessUniqueId[src]
impl Eq for ProcessUniqueIdimpl Default for ProcessUniqueId[src]
impl Default for ProcessUniqueIdimpl PartialEq<ProcessUniqueId> for ProcessUniqueId[src]
impl PartialEq<ProcessUniqueId> for ProcessUniqueIdfn eq(&self, other: &ProcessUniqueId) -> bool[src]
fn eq(&self, other: &ProcessUniqueId) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &ProcessUniqueId) -> bool[src]
fn ne(&self, other: &ProcessUniqueId) -> boolThis method tests for !=.
impl Hash for ProcessUniqueId[src]
impl Hash for ProcessUniqueIdfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Display for ProcessUniqueId[src]
impl Display for ProcessUniqueIdfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Debug for ProcessUniqueId[src]
impl Debug for ProcessUniqueIdAuto Trait Implementations
impl Send for ProcessUniqueId
impl Send for ProcessUniqueIdimpl Sync for ProcessUniqueId
impl Sync for ProcessUniqueIdBlanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T> ToString for T where
T: Display + ?Sized, [src]
impl<T> ToString for T where
T: Display + ?Sized, impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more
impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>,