Struct python3_dll_a::ImportLibraryGenerator
source · [−]pub struct ImportLibraryGenerator { /* private fields */ }Expand description
Windows import library generator for Python
Generates python3.dll or pythonXY.dll import library directly from the
embedded Python ABI definitions data for the specified compile target.
Example usage
// Generate `python3.dll.a` in "target/python3-dll-a"
ImportLibraryGenerator::new("x86_64", "gnu")
.generate(Path::new("target/python3-dll-a"))
.unwrap();
// Generate `python3.lib` in "target/python3-lib"
ImportLibraryGenerator::new("x86_64", "msvc")
.generate(Path::new("target/python3-lib"))
.unwrap();
// Generate `python39.dll.a` in "target/python3-dll-a"
ImportLibraryGenerator::new("x86_64", "gnu")
.version(Some((3, 9)))
.generate(Path::new("target/python3-dll-a"))
.unwrap();
// Generate `python38.lib` in "target/python3-lib"
ImportLibraryGenerator::new("x86_64", "msvc")
.version(Some((3, 8)))
.generate(Path::new("target/python3-lib"))
.unwrap();Implementations
sourceimpl ImportLibraryGenerator
impl ImportLibraryGenerator
sourcepub fn new(arch: &str, env: &str) -> Self
pub fn new(arch: &str, env: &str) -> Self
Creates a new import library generator for the specified compile target.
The compile target architecture name (as in CARGO_CFG_TARGET_ARCH)
is passed in arch.
The compile target environment ABI name (as in CARGO_CFG_TARGET_ENV)
is passed in env.
Trait Implementations
sourceimpl Clone for ImportLibraryGenerator
impl Clone for ImportLibraryGenerator
sourcefn clone(&self) -> ImportLibraryGenerator
fn clone(&self) -> ImportLibraryGenerator
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
Auto Trait Implementations
impl RefUnwindSafe for ImportLibraryGenerator
impl Send for ImportLibraryGenerator
impl Sync for ImportLibraryGenerator
impl Unpin for ImportLibraryGenerator
impl UnwindSafe for ImportLibraryGenerator
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more