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]
fn clone(&self) -> LibraryDependency[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for LibraryDependency[src]
impl Debug for LibraryDependency[src]impl PartialEq<LibraryDependency> for LibraryDependency[src]
impl PartialEq<LibraryDependency> for LibraryDependency[src]fn eq(&self, other: &LibraryDependency) -> bool[src]
fn eq(&self, other: &LibraryDependency) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &LibraryDependency) -> bool[src]
fn ne(&self, other: &LibraryDependency) -> bool[src]This method tests for !=.
impl TryFrom<&'_ LibraryDependency> for SharedLibrary[src]
impl TryFrom<&'_ LibraryDependency> for SharedLibrary[src]impl StructuralPartialEq for LibraryDependency[src]
Auto Trait Implementations
impl RefUnwindSafe for LibraryDependency
impl Send for LibraryDependency
impl Sync for LibraryDependency
impl Unpin for LibraryDependency
impl UnwindSafe for LibraryDependency
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more