Enum rustc_version::Channel [] [src]

pub enum Channel {
    Dev,
    Nightly,
    Beta,
    Stable,
}

Release channel of the compiler.

Variants

Dev

Development release channel

Nightly

Nightly release channel

Beta

Beta release channel

Stable

Stable release channel

Trait Implementations

Derived Implementations

impl Hash for Channel

fn hash<__H: Hasher>(&self, __arg_0: &mut __H)

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

impl PartialOrd for Channel

fn partial_cmp(&self, __arg_0: &Channel) -> Option<Ordering>

fn lt(&self, __arg_0: &Channel) -> bool

fn le(&self, __arg_0: &Channel) -> bool

fn gt(&self, __arg_0: &Channel) -> bool

fn ge(&self, __arg_0: &Channel) -> bool

impl Ord for Channel

fn cmp(&self, __arg_0: &Channel) -> Ordering

impl PartialEq for Channel

fn eq(&self, __arg_0: &Channel) -> bool

fn ne(&self, __arg_0: &Channel) -> bool

impl Eq for Channel

impl Clone for Channel

fn clone(&self) -> Channel

fn clone_from(&mut self, source: &Self)

impl Copy for Channel