pub trait IntoIdent {
// Required method
fn into_ident_parts(self) -> Vec<Cow<'static, str>>;
}Expand description
The parts of a qualified identifier: "age", or ("users", "id").
One entry point covers both, so a caller never has to decide between a
singular and a plural helper. Empty parts are dropped by
Expr::ident, which lets an unset table qualifier be passed
straight through.
Required Methods§
Sourcefn into_ident_parts(self) -> Vec<Cow<'static, str>>
fn into_ident_parts(self) -> Vec<Cow<'static, str>>
Perform the conversion.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".