1pub trait CanInto<T>: Sized {
2 const QUERY: bool = false;
3}
4
5impl<T> CanInto<T> for T where T: Clone {}
6