pub struct DeconstructedSnowflake {
pub timestamp: i64,
pub worker_id: u64,
pub process_id: u64,
pub increment: BigInt,
pub binary: String,
}Fields§
§timestamp: i64§worker_id: u64§process_id: u64§increment: BigInt§binary: StringTrait Implementations§
Source§impl Clone for DeconstructedSnowflake
impl Clone for DeconstructedSnowflake
Source§fn clone(&self) -> DeconstructedSnowflake
fn clone(&self) -> DeconstructedSnowflake
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DeconstructedSnowflake
impl Debug for DeconstructedSnowflake
Source§impl PartialEq for DeconstructedSnowflake
impl PartialEq for DeconstructedSnowflake
impl Eq for DeconstructedSnowflake
impl StructuralPartialEq for DeconstructedSnowflake
Auto Trait Implementations§
impl Freeze for DeconstructedSnowflake
impl RefUnwindSafe for DeconstructedSnowflake
impl Send for DeconstructedSnowflake
impl Sync for DeconstructedSnowflake
impl Unpin for DeconstructedSnowflake
impl UnwindSafe for DeconstructedSnowflake
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