pub trait DocumentSearch { // Required method fn content(&self) -> Option<String>; }
DocumentSearch is used for search engine
DocumentSearch