pub trait HasCombines {
// Required method
fn combines_mut(&mut self) -> &mut Combines;
}Expand description
A statement other statements can be combined onto.
Required Methods§
Sourcefn combines_mut(&mut self) -> &mut Combines
fn combines_mut(&mut self) -> &mut Combines
The set operations to modify.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".