pub struct ConstructPlan { /* private fields */ }Expand description
A byte-keyed view of the IR’s standalone Pandoc constructs that the
emission walk consumes directly: inline footnotes, native spans,
footnote references, bracketed citations, bare citations, and
bracketed spans. Recognition is authoritative in build_ir under
Dialect::Pandoc; the dispatcher’s legacy branches for these
constructs (^[, <span>, [^id], [@cite], @cite / -@cite,
[text]{attrs}) are gated to Dialect::CommonMark only and only
fire when the relevant extension is explicitly enabled.
Implementations§
Trait Implementations§
Source§impl Clone for ConstructPlan
impl Clone for ConstructPlan
Source§fn clone(&self) -> ConstructPlan
fn clone(&self) -> ConstructPlan
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 ConstructPlan
impl Debug for ConstructPlan
Source§impl Default for ConstructPlan
impl Default for ConstructPlan
Source§fn default() -> ConstructPlan
fn default() -> ConstructPlan
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ConstructPlan
impl RefUnwindSafe for ConstructPlan
impl Send for ConstructPlan
impl Sync for ConstructPlan
impl Unpin for ConstructPlan
impl UnsafeUnpin for ConstructPlan
impl UnwindSafe for ConstructPlan
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