Trait vstd::string::StringExecFns
source · 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§
Object Safety§
This trait is not object safe.