pub trait Access: PrivateAccess { }
Expand description

Trait to indicate an API needs access to the Heph runtime.

This is used by various API to get access to the runtime, but its only usable inside the Heph crate.

Also see NewActor::RuntimeAccess and SyncActor::RuntimeAccess.

Notes

This trait can’t be implemented by types outside of the Heph crate.

Implementors