pub struct InlineParser { /* private fields */ }
Expand description
Inline-level tokenizer.
Implementations§
Source§impl InlineParser
impl InlineParser
pub fn new() -> Self
Sourcepub fn skip_token(&self, state: &mut InlineState<'_, '_>)
pub fn skip_token(&self, state: &mut InlineState<'_, '_>)
Skip a single token by running all rules in validation mode;
returns true
if any rule reported success
Sourcepub fn tokenize(&self, state: &mut InlineState<'_, '_>)
pub fn tokenize(&self, state: &mut InlineState<'_, '_>)
Generate tokens for input range
Sourcepub fn parse(
&self,
src: String,
srcmap: Vec<(usize, usize)>,
node: Node,
md: &MarkdownThat,
root_ext: &mut RootExtSet,
inline_ext: &mut InlineRootExtSet,
) -> Node
pub fn parse( &self, src: String, srcmap: Vec<(usize, usize)>, node: Node, md: &MarkdownThat, root_ext: &mut RootExtSet, inline_ext: &mut InlineRootExtSet, ) -> Node
Process input string and push inline tokens into out_tokens
Sourcepub fn add_rule<T: InlineRule>(
&mut self,
) -> RuleBuilder<'_, (fn(&mut InlineState<'_, '_>) -> Option<usize>, fn(&mut InlineState<'_, '_>) -> Option<(Node, usize)>)>
pub fn add_rule<T: InlineRule>( &mut self, ) -> RuleBuilder<'_, (fn(&mut InlineState<'_, '_>) -> Option<usize>, fn(&mut InlineState<'_, '_>) -> Option<(Node, usize)>)>
pub fn has_rule<T: InlineRule>(&mut self) -> bool
pub fn remove_rule<T: InlineRule>(&mut self)
Trait Implementations§
Source§impl Debug for InlineParser
impl Debug for InlineParser
Source§impl Default for InlineParser
impl Default for InlineParser
Source§fn default() -> InlineParser
fn default() -> InlineParser
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !Freeze for InlineParser
impl RefUnwindSafe for InlineParser
impl Send for InlineParser
impl Sync for InlineParser
impl Unpin for InlineParser
impl UnwindSafe for InlineParser
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Converts
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
, which can then be
downcast
into Box<dyn ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Converts
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
, which can then be further
downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Converts
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Converts
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.