pub trait DeserializeQuery<'de>{
type Query;
}Expand description
A data structure that can be deserialized with a query.
The Query type is a #[repr(transparent)] wrapper automatically generated by
the proc macro. You can deserialize Query<YourType> first and then call .into()
to get YourType.
Required Associated Types§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.