pub trait OrchestratableService: Service {
    fn clone_box(&self) -> Box<dyn OrchestratableService>;
    fn as_service(&self) -> &dyn Service;
}
Expand description

A service that may be orchestratable.

This service has several stronger requirements, mainly required moving and sharing a service instance among threads.

Required Methods

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Implementors