Struct ark_api::behavior_controller::LoadModuleFuture
source · pub struct LoadModuleFuture { /* private fields */ }Expand description
A future for loading a module from the module store.
Can be retrieved from BehaviorController::load_behavior_module.
The future returns a serialized JSON vector of bytes containing the external registration info for the loaded module.
See BehaviorController::list_modules for details on how to deserialize
the registration info.
Trait Implementations§
source§impl Future for LoadModuleFuture
impl Future for LoadModuleFuture
Auto Trait Implementations§
impl RefUnwindSafe for LoadModuleFuture
impl Send for LoadModuleFuture
impl Sync for LoadModuleFuture
impl Unpin for LoadModuleFuture
impl UnwindSafe for LoadModuleFuture
Blanket Implementations§
source§impl<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more