pub struct SymbolTableEntry {
pub channel_index: Option<ObjectHandle>,
pub crc: SymbolCrc6,
pub symbol: SymbolString,
}
Fields§
§channel_index: Option<ObjectHandle>
Reference to a symbol table entry, a label for vTracePrintF format strings only (the handle of the destination channel)
crc: SymbolCrc6
6-bit CRC of the binary symbol (before lossy UTF8 string conversion)
symbol: SymbolString
The symbol (lossy converted to UTF8)
Trait Implementations§
source§impl Clone for SymbolTableEntry
impl Clone for SymbolTableEntry
source§fn clone(&self) -> SymbolTableEntry
fn clone(&self) -> SymbolTableEntry
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 SymbolTableEntry
impl Debug for SymbolTableEntry
source§impl Display for SymbolTableEntry
impl Display for SymbolTableEntry
source§impl Hash for SymbolTableEntry
impl Hash for SymbolTableEntry
source§impl Ord for SymbolTableEntry
impl Ord for SymbolTableEntry
source§fn cmp(&self, other: &SymbolTableEntry) -> Ordering
fn cmp(&self, other: &SymbolTableEntry) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<SymbolTableEntry> for SymbolTableEntry
impl PartialEq<SymbolTableEntry> for SymbolTableEntry
source§fn eq(&self, other: &SymbolTableEntry) -> bool
fn eq(&self, other: &SymbolTableEntry) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<SymbolTableEntry> for SymbolTableEntry
impl PartialOrd<SymbolTableEntry> for SymbolTableEntry
source§fn partial_cmp(&self, other: &SymbolTableEntry) -> Option<Ordering>
fn partial_cmp(&self, other: &SymbolTableEntry) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more