pub trait PipelineCacheInterface: CommonTraits { // Required method fn get_data(&self) -> Option<Vec<u8>>; }
custom