pub trait ReturningScope {
// Required method
fn binding_snapshot(&self) -> Result<BindingSnapshot, SQLError>;
}Expand description
Capture names and types from an active scope without exposing execution state.
Required Methods§
fn binding_snapshot(&self) -> Result<BindingSnapshot, SQLError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".