pub struct Kpathsea {
pub pwd: PathBuf,
pub local: HMap<String, PathBuf>,
pub global: Arc<KpathseaBase>,
}Expand description
A “database” of paths to search for files. Notably, the “global” part (e.g. the system-wide
TEXINPUTS, TEXMF, etc.) is shared between all instances of Kpathsea.
and lazily computed on first use.
*
Fields§
§pwd: PathBuf§local: HMap<String, PathBuf>§global: Arc<KpathseaBase>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Kpathsea
impl RefUnwindSafe for Kpathsea
impl Send for Kpathsea
impl Sync for Kpathsea
impl Unpin for Kpathsea
impl UnsafeUnpin for Kpathsea
impl UnwindSafe for Kpathsea
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more