pub trait LocatedQuery: Serialize + Deserialize {
// Required methods
fn get_selection(&self) -> &dyn Selection;
fn get_location(&self) -> &dyn Location;
}pub trait LocatedQuery: Serialize + Deserialize {
// Required methods
fn get_selection(&self) -> &dyn Selection;
fn get_location(&self) -> &dyn Location;
}