pub struct SymbolEventRecord {
pub symbol_id: SymbolId,
pub name: String,
pub symbol_kind: SymbolKind,
pub at: ClockTime,
}Expand description
Symbol-table event record. Shared shape across SYMBOL_* opcodes.
Fields§
§symbol_id: SymbolIdSymbol ID being affected.
name: StringCanonical or alias name attached by this event (may be empty for retire/unretire where the spec says the field is ignored).
symbol_kind: SymbolKindLocked kind for this symbol.
at: ClockTimeTimestamp of the event.
Trait Implementations§
Source§impl Clone for SymbolEventRecord
impl Clone for SymbolEventRecord
Source§fn clone(&self) -> SymbolEventRecord
fn clone(&self) -> SymbolEventRecord
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 SymbolEventRecord
impl Debug for SymbolEventRecord
Source§impl PartialEq for SymbolEventRecord
impl PartialEq for SymbolEventRecord
impl Eq for SymbolEventRecord
impl StructuralPartialEq for SymbolEventRecord
Auto Trait Implementations§
impl Freeze for SymbolEventRecord
impl RefUnwindSafe for SymbolEventRecord
impl Send for SymbolEventRecord
impl Sync for SymbolEventRecord
impl Unpin for SymbolEventRecord
impl UnsafeUnpin for SymbolEventRecord
impl UnwindSafe for SymbolEventRecord
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.