pub struct CompileConfig<'a> {
    pub src_path: &'a Path,
    pub header_paths: Vec<&'a Path>,
    pub parser_path: PathBuf,
    pub scanner_path: Option<PathBuf>,
    pub external_files: Option<&'a [PathBuf]>,
    pub output_path: Option<PathBuf>,
    pub flags: &'a [&'a str],
    pub sanitize: bool,
    pub name: String,
}Fields§
§src_path: &'a Path§header_paths: Vec<&'a Path>§parser_path: PathBuf§scanner_path: Option<PathBuf>§external_files: Option<&'a [PathBuf]>§output_path: Option<PathBuf>§flags: &'a [&'a str]§sanitize: bool§name: StringImplementations§
Auto Trait Implementations§
impl<'a> Freeze for CompileConfig<'a>
impl<'a> RefUnwindSafe for CompileConfig<'a>
impl<'a> Send for CompileConfig<'a>
impl<'a> Sync for CompileConfig<'a>
impl<'a> Unpin for CompileConfig<'a>
impl<'a> UnwindSafe for CompileConfig<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more