1 2 3 4 5 6 7 8
use std::path::PathBuf; #[derive(Debug)] pub enum PreprocessError { /// The provided include directory is either not a directory or is somehow /// unaccessable to the current user. NotAValidDirectory(PathBuf), }