Enum syntax_pos::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 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 Copy for Edition[src] 
impl Copy for Editionimpl Hash for Edition[src] 
impl Hash for Editionfn hash<__H: Hasher>(&self, state: &mut __H)[src] 
fn hash<__H: Hasher>(&self, state: &mut __H)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 PartialEq for Edition[src] 
impl PartialEq for Editionfn eq(&self, other: &Edition) -> bool[src] 
fn eq(&self, other: &Edition) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src] 
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl PartialOrd for Edition[src] 
impl PartialOrd 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 Debug for Edition[src] 
impl Debug for Editionfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Encodable for Edition[src] 
impl Encodable for Editionimpl Decodable for Edition[src] 
impl Decodable for Editionimpl Display for Edition[src] 
impl Display for Editionfn fmt(&self, f: &mut Formatter) -> Result[src] 
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl FromStr for Edition[src] 
impl FromStr for Edition