pub trait HasCompounds {
// Required method
fn compounds_mut(&mut self) -> &mut Compounds;
}Expand description
A SELECT other SELECTs can be compounded onto.
Required Methods§
Sourcefn compounds_mut(&mut self) -> &mut Compounds
fn compounds_mut(&mut self) -> &mut Compounds
The compound operands to modify.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".