Trait aurum_actors::core::Case[][src]

pub trait Case<S> {
    const VARIANT: Self;
}
Expand description

Signifies that type S belongs to a UnifiedType.

This trait should not be implemented manually. It is implemented by the unify macro instead. Feel free to use it in trait bounds.

Associated Constants

The variant of an enum implementing UnifiedType that corresponds to type S.

Implementors