pub trait StringExt {
// Required methods
fn push_string(&mut self, str: &String) -> &Self;
fn push_str_line(&mut self, str: &str) -> &Self;
}Required Methods§
fn push_string(&mut self, str: &String) -> &Self
fn push_str_line(&mut self, str: &str) -> &Self
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".