pub struct Config {Show 14 fields
pub schema: String,
pub version: String,
pub include: Vec<String>,
pub exclude: Vec<String>,
pub error_handling: Option<ErrorHandling>,
pub constraints: Option<ConstraintConfig>,
pub domains: Option<HashMap<String, DomainPatternConfig>>,
pub call_graph: Option<CallGraphConfig>,
pub limits: Option<LimitsConfig>,
pub root: PathBuf,
pub output: Option<OutputConfig>,
pub bridge: BridgeConfig,
pub annotate: AnnotateConfig,
pub documentation: DocumentationConfig,
}Expand description
@acp:summary “Main ACP configuration structure (schema-compliant)” @acp:lock normal
Fields§
§schema: StringJSON Schema URL for validation
version: StringACP specification version
include: Vec<String>File patterns to include (glob syntax)
exclude: Vec<String>File patterns to exclude (glob syntax)
error_handling: Option<ErrorHandling>Error handling configuration
constraints: Option<ConstraintConfig>Constraint configuration
domains: Option<HashMap<String, DomainPatternConfig>>Domain patterns for automatic classification
call_graph: Option<CallGraphConfig>Call graph generation configuration
limits: Option<LimitsConfig>Implementation limits
root: PathBufProject root directory (internal)
output: Option<OutputConfig>Output paths configuration (internal)
bridge: BridgeConfigRFC-0006: Documentation bridging configuration
annotate: AnnotateConfigRFC-0003: Annotation generation configuration
documentation: DocumentationConfigRFC-0002: Documentation references and style guides
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Config
impl<'de> Deserialize<'de> for Config
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Config
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more