1 2 3 4 5 6 7
use crate::compilable_text::CompilableText; pub trait CompiledTextAccessor { fn compiled_text(&self) -> Option<&CompilableText>; }