Searched defs:Library (Results 1 – 2 of 2) sorted by relevance
89 pub struct Library { struct92 /// Library search paths specified by -L argument94 /// Library file paths specified without -l argument108 /// Ensure that this struct can only be created via its private `[Library::new]` constructor. argument110 _priv: (),248 pub fn find_library(name: &str) -> Result<Library, String> { in find_library()253 pub fn probe_library(name: &str) -> Result<Library, Error> { in probe_library()377 pub fn find(&self, name: &str) -> Result<Library, String> { in find()385 pub fn probe(&self, name: &str) -> Result<Library, Error> { in probe()562 impl Library { impl
33 fn find(name: &str) -> Result<pkg_config::Library, Error> { in find()