pub trait HasRows<'a> {
// Required methods
fn get_rows(&self) -> &'_ str;
fn set_rows(&mut self, value: impl Into<Cow<'a, str>>);
}Expand description
Trait for elements that have the rows attribute
Required 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.