pub enum LocalEntry {
Variable(VariableEntry),
Parameter(VariableEntry),
}Expand description
Symbol table entry in the local scope.
Variants§
Variable(VariableEntry)
Parameter(VariableEntry)
Trait Implementations§
Source§impl Clone for LocalEntry
impl Clone for LocalEntry
Source§fn clone(&self) -> LocalEntry
fn clone(&self) -> LocalEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LocalEntry
impl Debug for LocalEntry
Source§impl Display for LocalEntry
impl Display for LocalEntry
Source§impl<'a> From<&'a LocalEntry> for Entry<'a>
impl<'a> From<&'a LocalEntry> for Entry<'a>
Source§fn from(value: &'a LocalEntry) -> Self
fn from(value: &'a LocalEntry) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LocalEntry
impl PartialEq for LocalEntry
Source§fn eq(&self, other: &LocalEntry) -> bool
fn eq(&self, other: &LocalEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TableEntry for LocalEntry
impl TableEntry for LocalEntry
impl Eq for LocalEntry
impl StructuralPartialEq for LocalEntry
Auto Trait Implementations§
impl Freeze for LocalEntry
impl RefUnwindSafe for LocalEntry
impl Send for LocalEntry
impl Sync for LocalEntry
impl Unpin for LocalEntry
impl UnsafeUnpin for LocalEntry
impl UnwindSafe for LocalEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more