pub trait Asked: Query {
type Ask: Query + ?Sized;
}Expand description
How a field’s type is written in a query.
An associated type rather than a Borrow bound on the call, because a
Borrow bound leaves the compiler two ways to read "a".."z" and it picks
the wrong one. This way the borrowed form follows from the field’s type and
there is nothing to infer.
Required Associated Types§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".