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§impl Debug for PrimitiveEntry
impl Debug for PrimitiveEntry
impl Eq for PrimitiveEntry
Source§impl PartialEq for PrimitiveEntry
impl PartialEq for PrimitiveEntry
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