1 2 3 4 5
use std::{path::Path, sync::Arc}; pub trait IncludeAdaptor { fn include(&mut self, path: &Path) -> Option<Arc<Vec<u8>>>; }