pub type YamlResult<T> = Result<T, YamlError>;
Result type for yaml-edit operations
pub enum YamlResult<T> { Ok(T), Err(YamlError), }
Contains the success value
Contains the error value