pub trait Join {
// Required method
fn join(&self, joiner: &'static str) -> String;
}Expand description
Join vector of ToString capable things to a String with given delimiter.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".