Skip to main content

DeclarePattern

Struct DeclarePattern 

Source
pub struct DeclarePattern {
    pub xpath: String,
    pub pattern_type: DeclarePatternType,
    pub base_text: Option<String>,
    pub sub_text: Option<String>,
    pub accent_name: Option<String>,
    pub has_wildcard: bool,
    pub wildcard_paths: Option<Vec<Vec<usize>>>,
    pub font_class: Option<&'static str>,
}
Expand description

Metadata for a compiled \lxDeclare pattern. Contains the XPath, pattern type for Rust-side filtering, and wildcard info.

Fields§

§xpath: String§pattern_type: DeclarePatternType§base_text: Option<String>

Base token text for subscript/prime/accent base matching (e.g. “x”)

§sub_text: Option<String>

For literal subscripts: the subscript content text (e.g. “1”)

§accent_name: Option<String>

For accent patterns: the accent name (e.g. “hat”)

§has_wildcard: bool§wildcard_paths: Option<Vec<Vec<usize>>>§font_class: Option<&'static str>

Font CLASS the matched base must carry (e.g. “caligraphic”), checked Rust-side — never baked into the XPath (see base_text_predicate).

Implementations§

Source§

impl DeclarePattern

Source

pub fn select_count(&self) -> Option<usize>

Number of sibling nodes the match spans — Perl’s $nnodes from domToXPath (Rewrite.pm). Subscript/prime patterns match the base XMTok plus its POSTSUBSCRIPT/POSTSUPERSCRIPT sibling; accents match the single XMApp; function applications span base + ( + n args + (n-1) commas + ).

Trait Implementations§

Source§

impl Clone for DeclarePattern

Source§

fn clone(&self) -> DeclarePattern

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 DeclarePattern

Source§

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

Formats the value using the given formatter. 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.