tek/input/src/edn_input.rs
2025-01-12 13:32:11 +01:00

9 lines
200 B
Rust

use crate::*;
use EdnItem::*;
pub trait EdnInput: Input {
fn matches (&self, token: &str) -> bool;
fn get_event <S: AsRef<str>> (_: &EdnItem<S>) -> Option<Self::Event> {
None
}
}