Enum librsnek::compiler::scope::Descriptor   
                   
                       [−]
                   
               [src]
pub enum Descriptor<T> {
    Base(T),
    Module(T),
    Function(T),
}Generic Descriptor enum
Variants
Base(T)Module(T)Function(T)Methods
impl Descriptor<Scope>[src]
Trait Implementations
impl<T: Debug> Debug for Descriptor<T>[src]
impl<T: PartialEq> PartialEq for Descriptor<T>[src]
fn eq(&self, __arg_0: &Descriptor<T>) -> bool
This method tests for self and other values to be equal, and is used
fn ne(&self, __arg_0: &Descriptor<T>) -> bool
This method tests for !=.
impl<T: Eq> Eq for Descriptor<T>[src]
fn assert_receiver_is_total_eq(&self)
impl<T: Ord> Ord for Descriptor<T>[src]
fn cmp(&self, __arg_0: &Descriptor<T>) -> Ordering
This method returns an Ordering between self and other.
impl<T: PartialOrd> PartialOrd for Descriptor<T>[src]
fn partial_cmp(&self, __arg_0: &Descriptor<T>) -> Option<Ordering>
This method returns an ordering between self and other values if one exists.
fn lt(&self, __arg_0: &Descriptor<T>) -> bool
This method tests less than (for self and other) and is used by the < operator.
fn le(&self, __arg_0: &Descriptor<T>) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
fn gt(&self, __arg_0: &Descriptor<T>) -> bool
This method tests greater than (for self and other) and is used by the > operator.
fn ge(&self, __arg_0: &Descriptor<T>) -> bool
This method tests greater than or equal to (for self and other) and is used by the >=
impl<T: Hash> Hash for Descriptor<T>[src]
fn hash<__HT: Hasher>(&self, __arg_0: &mut __HT)
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<T: Copy> Copy for Descriptor<T>[src]
impl<T: Clone> Clone for Descriptor<T>[src]
fn clone(&self) -> Descriptor<T>
Returns a copy of the value.
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source.