[][src]Struct snowflake_multi_threaded::SnowFlakeId

pub struct SnowFlakeId { /* fields omitted */ }

Methods

impl SnowFlakeId[src]

pub fn new(worker_id: i64, datacenter_id: i64) -> SnowFlakeId[src]

Returns the instance of SnowFlakeId

Examples

use snowflake_multi_threaded::SnowFlakeId;

let var = SnowFlakeId::new(1,1);

pub fn generate_id(&mut self) -> Result<i64, String>[src]

Return a number type of i64, it will always grow When Clock moved backwards ,it will be panic

Examples

use snowflake_multi_threaded::SnowFlakeId;

let var = SnowFlakeId::new(1,1).generate_id();

println!("the new id is {}", var.unwrap());

Trait Implementations

impl Default for SnowFlakeId[src]

impl Debug for SnowFlakeId[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]