[][src]Trait kay::ActorOrActorTrait

pub trait ActorOrActorTrait: 'static {
    type ID: TypedID;
}

Represents an adressable entitiy in the system: Either an actor class or an actor trait.

Associated Types

type ID: TypedID

The TypedID used to refer to instances of this actor class or actor trait

Loading content...

Implementors

impl<A: Actor> ActorOrActorTrait for A[src]

type ID = Self::ID

Loading content...