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 duplicate 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 for SymbolTableEntry
impl PartialEq for SymbolTableEntry
Source§impl PartialOrd for SymbolTableEntry
impl PartialOrd for SymbolTableEntry
impl Eq for SymbolTableEntry
impl StructuralPartialEq for SymbolTableEntry
Auto Trait Implementations§
impl Freeze for SymbolTableEntry
impl RefUnwindSafe for SymbolTableEntry
impl Send for SymbolTableEntry
impl Sync for SymbolTableEntry
impl Unpin for SymbolTableEntry
impl UnwindSafe for SymbolTableEntry
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