1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
use std::fmt::Display;
use std::fmt::Formatter;
use std::fmt::Debug;

use crate::*;

/// A generic way to parse a specific string.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct Just<const STRING: &'static str>;

impl<const STRING: &'static str> Expect for Just<STRING> {

	type Target = &'static str;

	fn expect_from(parser: &mut Parser) -> Result<Self::Target> {
			
		let cloned_iterator = parser.clone();

		let remainder: String = cloned_iterator.collect();

		if remainder.starts_with(STRING) {

			parser.advance_by(STRING.len());

			Ok(STRING)

		} else {

			Err(Unexpected::from(parser.clone()))

		}
		
	}

}