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