pub type AnsiblePlaybook = Vec<AnsiblePlay>;Expand description
Ansible playbook - a list of plays
Aliased Type§
pub struct AnsiblePlaybook { /* private fields */ }Trait Implementations§
Source§impl ConfigValidator for AnsiblePlaybook
impl ConfigValidator for AnsiblePlaybook
Source§fn validate_structure(&self) -> Vec<Diagnostic>
fn validate_structure(&self) -> Vec<Diagnostic>
Structural validation — errors mean the config is invalid. Read more
Source§fn validate_semantics(&self) -> Vec<Diagnostic>
fn validate_semantics(&self) -> Vec<Diagnostic>
Semantic validation — best-practice warnings, hints, and info. Read more
Source§fn validate(&self) -> ValidationResult
fn validate(&self) -> ValidationResult
Full validation: structure + semantics combined.