pub trait StatementAnalysisScopes {
// Required method
fn with_scope(
&self,
analyze: StatementAnalysisOperation<'_>,
) -> Result<(), SQLError>;
}Expand description
Retain a fresh catalog, namespace and transition scope for each statement analysis.
Required Methods§
fn with_scope( &self, analyze: StatementAnalysisOperation<'_>, ) -> Result<(), SQLError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".