Struct librsnek::compiler::scope::Scope   
                   
                       [−]
                   
               [src]
pub struct Scope {
    id: usize,
    parent_id: usize,
}Define the scope by its a unique id of all scopes within a module
Fields
id: usize
                           
                           
                           parent_id: usize
                           Trait Implementations
impl Debug for Scope[src]
impl PartialEq for Scope[src]
fn eq(&self, __arg_0: &Scope) -> bool
This method tests for self and other values to be equal, and is used
fn ne(&self, __arg_0: &Scope) -> bool
This method tests for !=.
impl Eq for Scope[src]
fn assert_receiver_is_total_eq(&self)
impl Ord for Scope[src]
impl PartialOrd for Scope[src]
fn partial_cmp(&self, __arg_0: &Scope) -> Option<Ordering>
This method returns an ordering between self and other values if one exists.
fn lt(&self, __arg_0: &Scope) -> bool
This method tests less than (for self and other) and is used by the < operator.
fn le(&self, __arg_0: &Scope) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
fn gt(&self, __arg_0: &Scope) -> bool
This method tests greater than (for self and other) and is used by the > operator.
fn ge(&self, __arg_0: &Scope) -> bool
This method tests greater than or equal to (for self and other) and is used by the >=
impl Hash for Scope[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)
Feeds this value into the given [Hasher].
fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher, 1.3.0
H: Hasher,
Feeds a slice of this type into the given [Hasher].
impl Copy for Scope[src]
impl Clone for Scope[src]
fn clone(&self) -> Scope
Returns a copy of the value.
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source.