Enum wampire::InvocationPolicy[][src]

pub enum InvocationPolicy {
    Single,
    RoundRobin,
    Random,
    First,
    Last,
}

The policies that dictate how invocations are distributed amongst shared registrations

Variants

Trait Implementations

impl PartialEq for InvocationPolicy
[src]

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

This method tests for !=.

impl Debug for InvocationPolicy
[src]

Formats the value using the given formatter. Read more

impl Clone for InvocationPolicy
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for InvocationPolicy
[src]

impl Default for InvocationPolicy
[src]

Returns the "default value" for a type. Read more

impl Serialize for InvocationPolicy
[src]

Serialize this value into the given Serde serializer. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations