mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 04:36:45 +01:00
9 lines
200 B
Rust
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
|
|
}
|
|
}
|