pub trait StringExecFns: Sized {
// Required methods
exec fn from_str<'a>(s: &'a str) -> String;
exec fn append<'a, 'b>(&'a mut self, other: &'b str);
exec fn concat<'b>(self, other: &'b str) -> String;
}
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.