1 2 3 4 5 6 7 8 9
#![doc = include_str!("../README.md")] mod components; mod utils; pub use crate::components::*; pub type ParseStringFn<T> = dyn Fn(&str) -> Option<T>; pub type ParseComponentFn<T> = dyn Fn(&str, &mut usize) -> Option<T>;