pub struct LibraryPath {
pub path: PathBuf,
pub library: String,
pub search: PathBuf,
}Expand description
Represents the match of a library when it’s found
Fields§
§path: PathBufPath to the library for linking (where .lib/.so/.dylib is)
library: StringLibrary name for linking
search: PathBufPath for runtime search (where .dll/.so/.dylib is for PATH/LD_LIBRARY_PATH)
Auto Trait Implementations§
impl Freeze for LibraryPath
impl RefUnwindSafe for LibraryPath
impl Send for LibraryPath
impl Sync for LibraryPath
impl Unpin for LibraryPath
impl UnsafeUnpin for LibraryPath
impl UnwindSafe for LibraryPath
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