[][src]Enum librarian::DyLibNameFilter

pub enum DyLibNameFilter<'a> {
    FileName(&'a str),
    Extension(&'a str),
    LibName(&'a str),
}

Dynamic library filter used to specify which library files needs to be copied.

Variants

FileName(&'a str)

Filename must match the string (Example: "SDL2.dll")

Extension(&'a str)

Extension must match the string (Example: "dll")

LibName(&'a str)

Library name must match the string (Example: "SDL2"). Extension will be inferred from the target platform. Files with an additional "lib" prefix will match as well.

Trait Implementations

impl<'a> Debug for DyLibNameFilter<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DyLibNameFilter<'a>

impl<'a> Send for DyLibNameFilter<'a>

impl<'a> Sync for DyLibNameFilter<'a>

impl<'a> Unpin for DyLibNameFilter<'a>

impl<'a> UnwindSafe for DyLibNameFilter<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.