Trait hydro_lang::deploy::LocalDeploy
source · pub trait LocalDeploy<'a> {
type Process: Node<Meta = Self::Meta>;
type Cluster: Node<Meta = Self::Meta>;
type ExternalProcess: Node<Meta = Self::Meta>;
type Meta: Default;
type GraphId;
// Provided methods
fn has_trivial_node() -> bool { ... }
fn trivial_process(_id: usize) -> Self::Process { ... }
fn trivial_cluster(_id: usize) -> Self::Cluster { ... }
}
Required Associated Types§
type Process: Node<Meta = Self::Meta>
type Cluster: Node<Meta = Self::Meta>
type ExternalProcess: Node<Meta = Self::Meta>
type Meta: Default
type GraphId
Provided Methods§
fn has_trivial_node() -> bool
fn trivial_process(_id: usize) -> Self::Process
fn trivial_cluster(_id: usize) -> Self::Cluster
Object Safety§
This trait is not object safe.