pub trait IntoCommonTableExpression<'a> {
// Provided method
fn into_cte(
self,
identifier: impl Into<Cow<'a, str>>,
) -> CommonTableExpression<'a>
where Self: Into<SelectQuery<'a>> { ... }
}Expand description
Conversion into a common table expression.
Used together with the Select#with method.
Provided Methods§
fn into_cte(
self,
identifier: impl Into<Cow<'a, str>>,
) -> CommonTableExpression<'a>where
Self: Into<SelectQuery<'a>>,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".