pub trait Joinable<T> {
type Output: Sized;
// Required method
fn join(&self, other: &T) -> Self::Output;
}Expand description
Provides functionality for joining text objects together.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".