pub struct Library {
pub name: String,
pub path: PathBuf,
pub realpath: Option<PathBuf>,
pub needed: Vec<String>,
pub rpath: Vec<String>,
pub runpath: Vec<String>,
}
Expand description
A library dependency
Fields
name: String
Library name
path: PathBuf
The path to the library.
realpath: Option<PathBuf>
The normalized real path to the library.
needed: Vec<String>
The dependencies of this library.
rpath: Vec<String>
Runtime library search paths. (deprecated)
runpath: Vec<String>
Runtime library search paths.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Library
impl Send for Library
impl Sync for Library
impl Unpin for Library
impl UnwindSafe for Library
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more