Skip to main content

AnsiblePlaybook

Type Alias AnsiblePlaybook 

Source
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

Source§

fn yaml_type(&self) -> YamlType

The YAML type this validator handles.
Source§

fn validate_structure(&self) -> Vec<Diagnostic>

Structural validation — errors mean the config is invalid. Read more
Source§

fn validate_semantics(&self) -> Vec<Diagnostic>

Semantic validation — best-practice warnings, hints, and info. Read more
Source§

fn validate(&self) -> ValidationResult

Full validation: structure + semantics combined.