pub struct EffectiveRepositoryConfig {
pub ignore_policy: IgnorePolicy,
pub openapi: Vec<String>,
pub openapi_source: ConfigSource,
pub http_consumers: Vec<HttpConsumerConfig>,
pub http_consumers_source: ConfigSource,
pub integration_tests: Vec<IntegrationTestConfig>,
pub integration_tests_source: ConfigSource,
pub implementations: Vec<ContractImplementationConfig>,
pub implementations_source: ConfigSource,
pub fingerprint: String,
}Expand description
Strict merged repository configuration after precedence resolution.
Fields§
§ignore_policy: IgnorePolicyEffective automatic-discovery exclusion policy.
openapi: Vec<String>Selected OpenAPI artifacts relative to the checkout root.
openapi_source: ConfigSourceSource that selected the OpenAPI artifacts.
http_consumers: Vec<HttpConsumerConfig>Selected explicit HTTP consumers.
http_consumers_source: ConfigSourceSource that selected the HTTP consumers.
integration_tests: Vec<IntegrationTestConfig>Selected explicit cross-language integration tests.
integration_tests_source: ConfigSourceSource that selected integration tests.
implementations: Vec<ContractImplementationConfig>Selected explicit contract implementation anchors.
implementations_source: ConfigSourceSource that selected implementation anchors.
fingerprint: StringFingerprint of all effective values and relevant local configuration.
Trait Implementations§
Source§impl Clone for EffectiveRepositoryConfig
impl Clone for EffectiveRepositoryConfig
Source§fn clone(&self) -> EffectiveRepositoryConfig
fn clone(&self) -> EffectiveRepositoryConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EffectiveRepositoryConfig
impl Debug for EffectiveRepositoryConfig
impl Eq for EffectiveRepositoryConfig
impl StructuralPartialEq for EffectiveRepositoryConfig
Auto Trait Implementations§
impl Freeze for EffectiveRepositoryConfig
impl RefUnwindSafe for EffectiveRepositoryConfig
impl Send for EffectiveRepositoryConfig
impl Sync for EffectiveRepositoryConfig
impl Unpin for EffectiveRepositoryConfig
impl UnsafeUnpin for EffectiveRepositoryConfig
impl UnwindSafe for EffectiveRepositoryConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.