1 2 3 4 5
use crate::{Result, Value}; pub trait ExtendFormat { fn parse(&self, input: &str) -> Result<Value>; }