Lines Matching defs:imp
3 use super::os::unix as imp; // the implementation used here doesn't matter particularly much...
5 use super::os::unix as imp;
7 use super::os::windows as imp;
15 pub struct Library(imp::Library);
84 imp::Library::new(filename).map(From::from)
172 impl From<imp::Library> for Library {
173 fn from(lib: imp::Library) -> Library {
178 impl From<Library> for imp::Library {
179 fn from(lib: Library) -> imp::Library {
198 inner: imp::Symbol<T>,
221 pub unsafe fn into_raw(self) -> imp::Symbol<T> {
245 pub unsafe fn from_raw<L>(sym: imp::Symbol<T>, library: &'lib L) -> Symbol<'lib, T> {