[][src]Enum bindgen::RustTarget

pub enum RustTarget {
    Stable_1_0,
    Stable_1_19,
    Stable_1_20,
    Stable_1_21,
    Stable_1_25,
    Stable_1_26,
    Stable_1_27,
    Stable_1_28,
    Stable_1_33,
    Nightly,
}

Represents the version of the Rust language to target.

To support a beta release, use the corresponding stable release.

This enum will have more variants added as necessary.

Variants

Stable_1_0

Rust stable 1.0

Stable_1_19

Rust stable 1.19

Stable_1_20

Rust stable 1.20

Stable_1_21

Rust stable 1.21

Stable_1_25

Rust stable 1.25

Stable_1_26

Rust stable 1.26

Stable_1_27

Rust stable 1.27

Stable_1_28

Rust stable 1.28

Stable_1_33

Rust stable 1.33

Nightly

Nightly rust

Trait Implementations

impl PartialEq<RustTarget> for RustTarget[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl From<RustTarget> for String[src]

impl Clone for RustTarget[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for RustTarget[src]

fn default() -> RustTarget[src]

Gives the latest stable Rust version

impl Eq for RustTarget[src]

impl Copy for RustTarget[src]

impl PartialOrd<RustTarget> for RustTarget[src]

#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use]
fn le(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Debug for RustTarget[src]

impl FromStr for RustTarget[src]

type Err = Error

The associated error which can be returned from parsing.

fn from_str(s: &str) -> Result<Self, Self::Err>[src]

Create a RustTarget from a string.

  • The stable/beta versions of Rust are of the form "1.0", "1.19", etc.
  • The nightly version should be specified with "nightly".

impl Hash for RustTarget[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for RustTarget

impl Sync for RustTarget

Blanket Implementations

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

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

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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