pub trait NamedExt: Sized {
// Provided method
fn named<Name: Tag>(self) -> NamedExpr<Self, Name> { ... }
}Expand description
Extension trait providing a static output name for derived projections.
Provided Methods§
Sourcefn named<Name: Tag>(self) -> NamedExpr<Self, Name>
fn named<Name: Tag>(self) -> NamedExpr<Self, Name>
Names this expression with a type-level crate::Tag.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".