Struct fisher_common::state::UniqueId [] [src]

pub struct UniqueId { /* fields omitted */ }

This struct contains an unique ID.

The struct is intentionally opaque, so you won't be able to get the actual value of the ID, but you can compare multiple IDs to get which one is greater, and check if multiple IDs are equal. This is done to be able to swap the inner implementation without breaking any code.

Trait Implementations

impl Debug for UniqueId
[src]

Formats the value using the given formatter.

impl Copy for UniqueId
[src]

impl Clone for UniqueId
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UniqueId
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for UniqueId
[src]

impl Hash for UniqueId
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialOrd for UniqueId
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more