Struct gluon_base::symbol::Symbol [] [src]

pub struct Symbol(_);

Methods

impl Symbol
[src]

fn new(name: &str) -> Symbol

fn name_eq(&self, other: &Symbol) -> bool

Checks whether the names of two symbols are equal

Trait Implementations

impl Eq for Symbol
[src]

impl Clone for Symbol
[src]

fn clone(&self) -> Symbol

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl AsRef<str> for Symbol
[src]

fn as_ref(&self) -> &str

Performs the conversion.

impl Debug for Symbol
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Display for Symbol
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Formats the value using the given formatter.

impl PartialEq for Symbol
[src]

fn eq(&self, other: &Symbol) -> bool

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl PartialOrd for Symbol
[src]

fn partial_cmp(&self, other: &Symbol) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more

fn lt(&self, other: &Rhs) -> bool
1.0.0

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

fn le(&self, other: &Rhs) -> bool
1.0.0

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

fn gt(&self, other: &Rhs) -> bool
1.0.0

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

fn ge(&self, other: &Rhs) -> bool
1.0.0

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

impl Ord for Symbol
[src]

fn cmp(&self, other: &Symbol) -> Ordering

This method returns an Ordering between self and other. Read more

impl Hash for Symbol
[src]

fn hash<H: Hasher>(&self, h: &mut H)

Feeds this value into the state given, updating the hasher as necessary.

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

Feeds a slice of this type into the state provided.

impl AstId for Symbol
[src]

type Untyped = Symbol

The type used instead of Self when the identifier does not need a type

fn to_id(self) -> Symbol

fn set_type(&mut self, _: ASTType<Self::Untyped>)

fn from_str<E>(env: &mut E, s: &str) -> Self where E: IdentEnv<Ident=Self>