pub struct Include {
pub path: String,
pub kind: IncludeKind,
}
Expand description
A header to #include.
The cxxbridge tool does not parse or even require the given paths to exist; they simply go into the generated C++ code as #include lines.
Fields
path: String
The header’s path, not including the enclosing quotation marks or angle brackets.
kind: IncludeKind
Whether to emit #include "path"
or #include <path>
.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Include
impl UnwindSafe for Include
Blanket Implementations
Mutably borrows from an owned value. Read more