pub trait ViewTuple {
// Required methods
fn foreach_view<F: FnMut(&dyn View)>(&self, f: &mut F);
fn len(&self) -> usize;
// Provided method
fn is_empty(&self) -> bool { ... }
}Expand description
Allows rui to iterate over a tuple of Views.
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.