Enum uniffi_bindgen::bindings::TargetLanguage[][src]

pub enum TargetLanguage {
    Kotlin,
    Swift,
    Python,
    GeckoJs,
}

Enumeration of all foreign language targets currently supported by this crate.

The functions in this module will delegate to a language-specific backend based on the provided TargetLanguage. For convenience of calling code we also provide a few TryFrom implementations to help guess the correct target language from e.g. a file extension of command-line argument.

Variants

Kotlin
Swift
Python
GeckoJs

Trait Implementations

impl Clone for TargetLanguage[src]

impl Copy for TargetLanguage[src]

impl Eq for TargetLanguage[src]

impl Hash for TargetLanguage[src]

impl PartialEq<TargetLanguage> for TargetLanguage[src]

impl StructuralEq for TargetLanguage[src]

impl StructuralPartialEq for TargetLanguage[src]

impl TryFrom<&'_ OsStr> for TargetLanguage[src]

type Error = Error

The type returned in the event of a conversion error.

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

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<String> for TargetLanguage[src]

type Error = Error

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> Conv for T

impl<T> Conv for T

impl<T> FmtForward for T

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

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

impl<T> Pipe for T where
    T: ?Sized

impl<T> Pipe for T

impl<T> PipeAsRef for T

impl<T> PipeBorrow for T

impl<T> PipeDeref for T

impl<T> PipeRef for T

impl<T> Tap for T

impl<T> Tap for T

impl<T, U> TapAsRef<U> for T where
    U: ?Sized

impl<T, U> TapBorrow<U> for T where
    U: ?Sized

impl<T> TapDeref for T

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryConv for T

impl<T> TryConv for T

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.