pub trait ClusterSpec<'a, D>{
// Required method
fn build(self, location_key: LocationKey, name_hint: &str) -> D::Cluster;
}Available on crate feature
build only.Required Methods§
fn build(self, location_key: LocationKey, name_hint: &str) -> D::Cluster
Implementors§
impl ClusterSpec<'_, HydroDeploy> for DeployClusterSpec
Available on crate feature
deploy only.impl<'a> ClusterSpec<'a, MaelstromDeploy> for MaelstromClusterSpec
Available on crate features
maelstrom and deploy only.impl<'a> ClusterSpec<'a, DockerDeploy> for DockerDeployClusterSpec
Available on crate features
docker_deploy and deploy only.impl<'a> ClusterSpec<'a, EcsDeploy> for EcsDeployClusterSpec
Available on crate features
ecs_deploy and deploy only.impl<T: Into<TrybuildHost>, I: IntoIterator<Item = T>> ClusterSpec<'_, HydroDeploy> for I
Available on crate feature
deploy only.