pub trait SplitViewInplace<X, S: ?Sized = ()> {
// Required method
fn inplace_view(&self, state: &mut S, xy: X);
}Expand description
Split-state in-place processing API over typed views.
Required Methods§
Sourcefn inplace_view(&self, state: &mut S, xy: X)
fn inplace_view(&self, state: &mut S, xy: X)
Process one typed view in place.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".