pub struct IncRoot {
pub kind: IncRootKind,
pub path: PathBuf,
pub precedence: usize,
pub source: String,
}Expand description
A single ordered include root entry used to resolve modules.
Fields§
§kind: IncRootKindRoot kind/category.
path: PathBufPath value for this root.
precedence: usizeSearch precedence: lower values are searched first.
source: StringHuman-readable source label.
Trait Implementations§
impl Eq for IncRoot
impl StructuralPartialEq for IncRoot
Auto Trait Implementations§
impl Freeze for IncRoot
impl RefUnwindSafe for IncRoot
impl Send for IncRoot
impl Sync for IncRoot
impl Unpin for IncRoot
impl UnsafeUnpin for IncRoot
impl UnwindSafe for IncRoot
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