parser
This commit is contained in:
parent
2fef529f57
commit
a85efe2056
22 changed files with 1776 additions and 7 deletions
10
src/objects/fragment.rs
Normal file
10
src/objects/fragment.rs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#[cfg_attr(test, derive(PartialEq, Debug))]
|
||||
pub struct Fragment<'a> {
|
||||
value: &'a str,
|
||||
}
|
||||
|
||||
impl<'a> Fragment<'a> {
|
||||
pub fn parse(src: &'a str) -> Option<(Fragment<'a>, usize)> {
|
||||
None
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue