[][src]Module act_zero::utils

Utility types and traits. These are typically used internally or by macro expansions and you will not normally need to use them directly.

Traits

IntoResult

Helper trait for things which can be converted into a result. This is used to allow actor method implementations to optionally return a result.

UpcastFrom

Helper trait to support upcasting from a concrete actor type to an actor trait object. (see Addr::upcast and WeakAddr::upcast). This is automatically implemented by the #[act_zero] macro.