[][src]Trait tsunami::providers::MachineSetup

pub trait MachineSetup {
    type Region: Eq + Hash + Clone + Display + Send;
    fn region(&self) -> Self::Region;
}

This is used to group machines into connections to cloud providers. e.g., for AWS we need a separate connection to each region.

Associated Types

type Region: Eq + Hash + Clone + Display + Send

Grouping type.

Loading content...

Required methods

fn region(&self) -> Self::Region

Get the region.

Loading content...

Implementors

impl MachineSetup for tsunami::providers::aws::Setup[src]

type Region = String

impl MachineSetup for tsunami::providers::azure::Setup[src]

type Region = Region

impl MachineSetup for tsunami::providers::baremetal::Setup[src]

type Region = String

Loading content...