Struct python_packaging::resource::LibraryDependency [−][src]
pub struct LibraryDependency {
pub name: String,
pub static_library: Option<FileData>,
pub static_filename: Option<PathBuf>,
pub dynamic_library: Option<FileData>,
pub dynamic_filename: Option<PathBuf>,
pub framework: bool,
pub system: bool,
}Represents a dependency on a library.
The library can be defined a number of ways and multiple variants may be present.
Fields
name: StringName of the library.
This will be used to tell the linker what to link.
static_library: Option<FileData>Static library version of library.
static_filename: Option<PathBuf>The filename the static library should be materialized as.
dynamic_library: Option<FileData>Shared library version of library.
dynamic_filename: Option<PathBuf>The filename the dynamic library should be materialized as.
framework: boolWhether this is a system framework (macOS).
system: boolWhether this is a system library.
Implementations
Trait Implementations
impl Clone for LibraryDependency[src]
impl Clone for LibraryDependency[src]fn clone(&self) -> LibraryDependency[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl PartialEq<LibraryDependency> for LibraryDependency[src]
impl PartialEq<LibraryDependency> for LibraryDependency[src]fn eq(&self, other: &LibraryDependency) -> bool[src]
fn ne(&self, other: &LibraryDependency) -> bool[src]
impl TryFrom<&'_ LibraryDependency> for SharedLibrary[src]
impl TryFrom<&'_ LibraryDependency> for SharedLibrary[src]Auto Trait Implementations
impl RefUnwindSafe for LibraryDependency
impl RefUnwindSafe for LibraryDependencyimpl Send for LibraryDependency
impl Send for LibraryDependencyimpl Sync for LibraryDependency
impl Sync for LibraryDependencyimpl Unpin for LibraryDependency
impl Unpin for LibraryDependencyimpl UnwindSafe for LibraryDependency
impl UnwindSafe for LibraryDependency