pub trait IntoPart<'a> {
// Required method
fn into_part(self) -> Part<'a>;
}Expand description
Conversion into a borrowed query string Part.
Implemented for &str and for &T of any Display type, so string
literals, &String, &i32, &bool etc. can all be passed to
QueryString’s methods directly.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".