Enum nakadion::api::PartitionStrategy[][src]

pub enum PartitionStrategy {
    Random,
    Hash,
    UserDefined,
}

The partition strategy of an event type.

For more information see Event Type

Variants

Trait Implementations

impl Debug for PartitionStrategy
[src]

Formats the value using the given formatter. Read more

impl Clone for PartitionStrategy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for PartitionStrategy
[src]

impl Serialize for PartitionStrategy
[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for PartitionStrategy
[src]

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations