pub trait Wrappable {
// Required method
fn set_wrap(&mut self, wrap: bool);
}Expand description
Trait for objects that allow toggling line wrapping.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".