Enum syntax::edition::Edition  [−][src]
pub enum Edition {
    Edition2015,
    Edition2018,
}The edition of the compiler (RFC 2052)
Variants
Edition2015The 2015 edition
Edition2018The 2018 edition
Methods
impl Edition[src] 
impl Editionpub fn lint_name(&self) -> &'static str[src] 
pub fn lint_name(&self) -> &'static strpub fn feature_name(&self) -> &'static str[src] 
pub fn feature_name(&self) -> &'static strpub fn is_stable(&self) -> bool[src] 
pub fn is_stable(&self) -> boolTrait Implementations
impl PartialOrd<Edition> for Edition[src] 
impl PartialOrd<Edition> for Editionfn partial_cmp(&self, other: &Edition) -> Option<Ordering>[src] 
fn partial_cmp(&self, other: &Edition) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src] 
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src] 
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src] 
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src] 
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Hash for Edition[src] 
impl Hash for Editionfn hash<__H>(&self, state: &mut __H) where
    __H: Hasher, [src] 
fn hash<__H>(&self, state: &mut __H) where
    __H: Hasher, Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0[src] 
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Display for Edition[src] 
impl Display for Editionfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src] 
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Decodable for Edition[src] 
impl Decodable for Editionimpl Clone for Edition[src] 
impl Clone for Editionfn clone(&self) -> Edition[src] 
fn clone(&self) -> EditionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src] 
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl FromStr for Edition[src] 
impl FromStr for Editiontype Err = ()
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Edition, ()>[src] 
fn from_str(s: &str) -> Result<Edition, ()>Parses a string s to return a value of this type. Read more
impl Debug for Edition[src] 
impl Debug for Editionfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src] 
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for Edition[src] 
impl Copy for Editionimpl Encodable for Edition[src] 
impl Encodable for Editionimpl PartialEq<Edition> for Edition[src] 
impl PartialEq<Edition> for Edition