Skip to main content

Primitive

Struct Primitive 

Source
pub struct Primitive {
    pub cs: Token,
    pub paramlist: Option<Parameters>,
    pub replacement: Option<PrimitiveBody>,
    pub before_digest: Vec<BeforeDigestClosure>,
    pub after_digest: Vec<DigestionClosure>,
    pub alias: Option<String>,
    pub nargs: Option<usize>,
    pub reversion: Option<Reversion>,
    pub is_prefix: bool,
    pub font_id: Option<SymStr>,
}

Fields§

§cs: Token§paramlist: Option<Parameters>§replacement: Option<PrimitiveBody>§before_digest: Vec<BeforeDigestClosure>§after_digest: Vec<DigestionClosure>§alias: Option<String>§nargs: Option<usize>§reversion: Option<Reversion>§is_prefix: bool§font_id: Option<SymStr>

Set on \font-defined primitives (Perl LaTeXML::Core::Definition::FontDef::fontID). Holds the value-table key under which this CS’s fontinfo hash lives (e.g. \tenrmSome("fontinfo_\\tenrm")). Lets the dumper round-trip font-defined primitives via Perl’s FD(<cs>) record (see Core/Dumper.pm L356-389) — closures aren’t serializable but the font_id + the dumped Stored::Font value at that key let the reader rebuild an equivalent merge-font Primitive.

Trait Implementations§

Source§

impl Clone for Primitive

Source§

fn clone(&self) -> Primitive

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for Primitive

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Definition for Primitive

Source§

fn before_digest(&self) -> Option<&Vec<BeforeDigestClosure>>

Source§

fn after_digest(&self) -> Option<&Vec<DigestionClosure>>

Source§

fn is_prefix(&self) -> bool

Source§

fn invoke(&self, _once_only: bool) -> Result<Tokens>

Source§

fn invoke_primitive(&self) -> Result<Vec<Digested>>

Source§

fn do_absorption( &self, _document: &mut Document, _whatsit: &Whatsit, ) -> Result<Vec<Node>>

Source§

fn get_cs(&self) -> Cow<'_, Token>

We can almost always return the CS by reference, except in a Register’s RefCell, where we are forced to clone
Source§

fn get_cs_name(&self) -> Cow<'_, str>

Source§

fn get_alias(&self) -> Option<&String>

Source§

fn get_parameters(&self) -> Option<&Parameters>

Source§

fn get_num_args(&self) -> usize

Source§

fn get_cs_or_alias(&self) -> Cow<'_, Token>

Source§

fn get_sizer(&self) -> Option<SizingClosure>

Source§

fn is_protected(&self) -> bool

Source§

fn is_register(&self) -> bool

Source§

fn is_readonly(&self) -> bool

Source§

fn get_test(&self) -> Option<&ConditionalClosure>

Source§

fn get_conditional_type(&self) -> Option<ConditionalType>

Source§

fn read_arguments(&self) -> Result<Vec<ArgWrap>>
where Self: Sized,

Source§

fn invocation( &mut self, args: Vec<Option<Tokens>>, _gullet: &mut Gullet, ) -> Result<Tokens>

Source§

fn after_digest_body(&self) -> Option<&Vec<DigestionClosure>>

Source§

fn capture_body(&self) -> bool

Source§

fn execute_before_digest(&self) -> Result<Vec<Digested>>

Source§

fn execute_after_digest(&self, whatsit: &mut Whatsit) -> Result<Vec<Digested>>

Source§

fn execute_after_digest_body( &self, whatsit: &mut Whatsit, ) -> Result<Vec<Digested>>

Source§

fn value_of(&self, _args: Vec<ArgWrap>) -> Option<RegisterValue>

Source§

fn set_value( &self, _value: RegisterValue, _scope: Option<Scope>, _args: Vec<ArgWrap>, )

runs the setter to assign the value for a register
Source§

fn register_type(&self) -> Option<RegisterType>

Source§

fn get_reversion_spec(&self) -> Option<Reversion>

Source§

fn get_expansion(&self) -> Option<&ExpansionBody>

Source§

fn stringify_type(&self, deftype: &str) -> String

Source§

impl From<Primitive> for Stored

Source§

fn from(value: Primitive) -> Self

Converts to this type from the input type.
Source§

impl Object for Primitive

Source§

fn stringify(&self) -> String

Source§

fn isa_box(&self) -> bool

Source§

fn is_expandable(&self) -> bool

Source§

fn is_definition(&self) -> bool

Source§

fn is_comment(&self) -> bool

Source§

fn get_locator(&self) -> Option<Locator>

The object’s stored source locator, if it has one. None is the honest “no recorded source position” (replacing the old Locator::default() file!()/line!() sentinel). For “where the parser is now” (error reporting, box creation), use the free fn gullet::get_locator().
Source§

fn revert(&self) -> Result<Tokens>

each concrete object needs to provide its own path back to tokens
Source§

impl PartialEq for Primitive

Source§

fn eq(&self, other: &Primitive) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.