Lines Matching refs:Library
63 pub struct Library(imp::Library); struct
65 impl Library { impl
128 pub unsafe fn new<P: AsRef<OsStr>>(filename: P) -> Result<Library, Error> { in new() argument
129 imp::Library::new(filename).map(From::from) in new()
210 impl fmt::Debug for Library { implementation
216 impl From<imp::Library> for Library { implementation
217 fn from(lib: imp::Library) -> Library { in from() argument
218 Library(lib) in from()
222 impl From<Library> for imp::Library { implementation
223 fn from(lib: Library) -> imp::Library { in from() argument
228 unsafe impl Send for Library {} implementation
229 unsafe impl Sync for Library {} implementation