Enum darklua_core::nodes::TableEntry
source · pub enum TableEntry {
Field(TableFieldEntry),
Index(TableIndexEntry),
Value(Expression),
}Variants§
Implementations§
source§impl TableEntry
impl TableEntry
pub fn clear_comments(&mut self)
pub fn clear_whitespaces(&mut self)
Trait Implementations§
source§impl Clone for TableEntry
impl Clone for TableEntry
source§fn clone(&self) -> TableEntry
fn clone(&self) -> TableEntry
Returns a copy of the value. Read more
1.0.0 · 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 TableEntry
impl Debug for TableEntry
source§impl From<TableFieldEntry> for TableEntry
impl From<TableFieldEntry> for TableEntry
source§fn from(entry: TableFieldEntry) -> Self
fn from(entry: TableFieldEntry) -> Self
Converts to this type from the input type.
source§impl From<TableIndexEntry> for TableEntry
impl From<TableIndexEntry> for TableEntry
source§fn from(entry: TableIndexEntry) -> Self
fn from(entry: TableIndexEntry) -> Self
Converts to this type from the input type.
source§impl PartialEq<TableEntry> for TableEntry
impl PartialEq<TableEntry> for TableEntry
source§fn eq(&self, other: &TableEntry) -> bool
fn eq(&self, other: &TableEntry) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for TableEntry
impl StructuralEq for TableEntry
impl StructuralPartialEq for TableEntry
Auto Trait Implementations§
impl RefUnwindSafe for TableEntry
impl Send for TableEntry
impl Sync for TableEntry
impl Unpin for TableEntry
impl UnwindSafe for TableEntry
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