[][src]Enum maturin::BridgeModel

pub enum BridgeModel {
    Cffi,
    Bin,
    Bindings(String),
    BindingsAbi3,
}

The way the rust code is used in the wheel

Variants

Cffi

A native module with c bindings, i.e. #[no_mangle] extern "C" <some item>

Bin

A rust binary to be shipped a python package

Bindings(String)

A native module with pyo3 or rust-cpython bindings. The String is the name of the bindings providing crate, e.g. pyo3.

BindingsAbi3

Bindings, but specifically for pyo3 with feature flags that allow building a single wheel for all cpython versions (pypy still needs multiple versions)

Implementations

impl BridgeModel[src]

pub fn unwrap_bindings(&self) -> &str[src]

Returns the name of the bindings crate

pub fn is_bindings(&self, name: &str) -> bool[src]

Test whether this is using a specific bindings crate

Trait Implementations

impl Clone for BridgeModel[src]

impl Debug for BridgeModel[src]

impl Eq for BridgeModel[src]

impl PartialEq<BridgeModel> for BridgeModel[src]

impl StructuralEq for BridgeModel[src]

impl StructuralPartialEq for BridgeModel[src]

Auto Trait Implementations

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,