pub struct PrimitiveEntry {
pub name: String,
pub opcode: PrimitiveOpcode,
pub kind: PrimitiveKind,
}Expand description
Resolved information for a single registered primitive.
Fields§
§name: StringPrimitive control sequence name without leading backslash.
opcode: PrimitiveOpcodeNumeric dispatch key for translated/native engine code.
kind: PrimitiveKindSemantic category of the primitive.
Trait Implementations§
Source§impl Clone for PrimitiveEntry
impl Clone for PrimitiveEntry
Source§fn clone(&self) -> PrimitiveEntry
fn clone(&self) -> PrimitiveEntry
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 PrimitiveEntry
impl Debug for PrimitiveEntry
impl Eq for PrimitiveEntry
Source§impl PartialEq for PrimitiveEntry
impl PartialEq for PrimitiveEntry
Source§fn eq(&self, other: &PrimitiveEntry) -> bool
fn eq(&self, other: &PrimitiveEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PrimitiveEntry
Auto Trait Implementations§
impl Freeze for PrimitiveEntry
impl RefUnwindSafe for PrimitiveEntry
impl Send for PrimitiveEntry
impl Sync for PrimitiveEntry
impl Unpin for PrimitiveEntry
impl UnsafeUnpin for PrimitiveEntry
impl UnwindSafe for PrimitiveEntry
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