Enum pyoxidizerlib::py_packaging::distribution::DistributionFlavor[][src]

pub enum DistributionFlavor {
    Standalone,
    StandaloneStatic,
    StandaloneDynamic,
}

Describes the flavor of a distribution.

Variants

Standalone

Distributions coming from the python-build-standalone project.

StandaloneStatic

Statically linked distributions coming from the python-build-standalone project.

StandaloneDynamic

Dynamically linked distributions coming from the python-build-standalone project.

Trait Implementations

impl Debug for DistributionFlavor[src]

impl Default for DistributionFlavor[src]

impl PartialEq<DistributionFlavor> for DistributionFlavor[src]

impl StructuralPartialEq for DistributionFlavor[src]

impl TryFrom<&'_ str> for DistributionFlavor[src]

type Error = String

The type returned in the event of a conversion error.

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<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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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

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