usecrate::BuildError;usederive_more::{Display, Error,From};usestd::{fmt::Debug, io};/// Error when execute the [`run`](super::run::run) function.
#[derive(Debug, Display, From, Error)]pubenumRuntimeError<Path> {/// Failed to parse YAML from stdin.
Yaml(serde_yaml::Error),/// Failed to create the filesystem tree.
Build(BuildError<Path, io::Error>),}