Struct seaplane_cli::context::formation::FormationCfgCtx
source · pub struct FormationCfgCtx {
pub flights: Vec<String>,
pub affinities: Vec<String>,
pub connections: Vec<String>,
pub providers_allowed: HashSet<ProviderModel>,
pub providers_denied: HashSet<ProviderModel>,
pub regions_allowed: HashSet<RegionModel>,
pub regions_denied: HashSet<RegionModel>,
pub public_endpoints: Vec<Endpoint>,
pub formation_endpoints: Vec<Endpoint>,
pub flight_endpoints: Vec<Endpoint>,
}Fields§
§flights: Vec<String>String is a flight name because that’s the only thing shared by both local and remote
affinities: Vec<String>String is a flight name because that’s the only thing shared by both local and remote
connections: Vec<String>String is a flight name because that’s the only thing shared by both local and remote
providers_allowed: HashSet<ProviderModel>Use actual API model since that is ultimately what we want
providers_denied: HashSet<ProviderModel>Use actual API model since that is ultimately what we want
regions_allowed: HashSet<RegionModel>Use actual API model since that is ultimately what we want
regions_denied: HashSet<RegionModel>Use actual API model since that is ultimately what we want
public_endpoints: Vec<Endpoint>§formation_endpoints: Vec<Endpoint>§flight_endpoints: Vec<Endpoint>Trait Implementations§
source§impl Clone for FormationCfgCtx
impl Clone for FormationCfgCtx
source§fn clone(&self) -> FormationCfgCtx
fn clone(&self) -> FormationCfgCtx
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for FormationCfgCtx
impl Debug for FormationCfgCtx
source§impl Default for FormationCfgCtx
impl Default for FormationCfgCtx
source§fn default() -> FormationCfgCtx
fn default() -> FormationCfgCtx
Returns the “default value” for a type. Read more