Skip to main content

Expandable

Struct Expandable 

Source
pub struct Expandable {
    pub is_protected: bool,
    pub is_long: bool,
    pub is_outer: bool,
    pub has_cc_arg: bool,
    pub alias: Option<String>,
    pub locator: Locator,
    pub cs: Token,
    pub paramlist: Option<Parameters>,
    pub expansion: Option<ExpansionBody>,
}

Fields§

§is_protected: bool§is_long: bool§is_outer: bool§has_cc_arg: bool§alias: Option<String>§locator: Locator§cs: Token§paramlist: Option<Parameters>§expansion: Option<ExpansionBody>

Implementations§

Source§

impl Expandable

Source

pub fn new( cs: Token, paramlist: Option<Parameters>, expansion_opt: Option<ExpansionBody>, traits: Option<ExpandableOptions>, ) -> Result<Self>

Trait Implementations§

Source§

impl Clone for Expandable

Source§

fn clone(&self) -> Expandable

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 Debug for Expandable

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Expandable

Source§

fn default() -> Self

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

impl Definition for Expandable

Source§

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

Expand the expandable control sequence. This should be carried out by the Gullet.

Source§

fn is_protected(&self) -> bool

Source§

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

Source§

fn get_num_args(&self) -> usize

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_expansion(&self) -> Option<&ExpansionBody>

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

fn is_register(&self) -> bool

Source§

fn is_prefix(&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 stringify_type(&self, deftype: &str) -> String

Source§

impl From<Expandable> for Stored

Storing all definitions is expected - Expandable case

Source§

fn from(definition: Expandable) -> Self

Converts to this type from the input type.
Source§

impl Object for Expandable

Source§

fn is_definition(&self) -> bool

Source§

fn is_expandable(&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 stringify(&self) -> String

Source§

fn isa_box(&self) -> bool

Source§

fn is_comment(&self) -> bool

Source§

fn be_digested(self) -> Result<Digested>
where Self: Sized + Debug,

Source§

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

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

impl PartialEq for Expandable

Source§

fn eq(&self, other: &Expandable) -> 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.