pub trait FromQueryArgument: Default {
type Err;
// Required method
fn from_query_argument(argument: &str) -> Result<Self, Self::Err>;
}Required Associated Types§
Required Methods§
Sourcefn from_query_argument(argument: &str) -> Result<Self, Self::Err>
fn from_query_argument(argument: &str) -> Result<Self, Self::Err>
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.