pub trait HasWithClause: AstNode {
// Provided method
fn with_clause(&self) -> Option<WithClause> { ... }
}Provided Methods§
fn with_clause(&self) -> Option<WithClause>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".