Docs.rs
topdown-rs-0.3.3
topdown-rs 0.3.3
Docs.rs crate page
MIT
Links
Repository
crates.io
Source
Owners
ckuwata
Dependencies
regex ^0.1.71
normal
Versions
0%
of the crate is documented
Platform
aarch64-apple-darwin
aarch64-unknown-linux-gnu
i686-pc-windows-msvc
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
ParserHook
topdown
0.3.3
Parser
Hook
Required Methods
hook
Implementors
In crate topdown
topdown
Trait
Parser
Hook
Copy item path
Source
pub trait ParserHook { // Required method fn
hook
(&self, cs: &mut
CharSeq
<'_>); }
Required Methods
§
Source
fn
hook
(&self, cs: &mut
CharSeq
<'_>)
Implementors
§
Source
§
impl<'a>
ParserHook
for
Skip
<'a>
Source
§
impl<F, T>
ParserHook
for
FunctionWrapper
<F, T>
where F:
Fn
(&mut
CharSeq
<'_>) ->
ParserResult
<T>,