pub trait FromQuery {
// Required method
fn from_query(query: &str) -> Self;
}Required Methods§
Sourcefn from_query(query: &str) -> Self
fn from_query(query: &str) -> Self
Create an instance of Self from a query string.
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.