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