pub enum LinkSearchKind {
Dependency,
Crate,
Native,
Framework,
All,
}
Expand description
Represents the different kinds of link search paths used by the Rust compiler.
Variants§
Dependency
Only search for transitive dependencies in this directory
Crate
Only search for this crate’s direct dependencies in this directory
Native
Only search for native libraries in this directory
Framework
Only search for macOS frameworks in this directory
All
Search for all library kinds in this directory, except frameworks.
This is the default if kind
is not specified
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinkSearchKind
impl RefUnwindSafe for LinkSearchKind
impl Send for LinkSearchKind
impl Sync for LinkSearchKind
impl Unpin for LinkSearchKind
impl UnwindSafe for LinkSearchKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more