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.
pub trait Joinable<T> {
type Output: Sized;
// Required method
fn join(&self, other: &T) -> Self::Output;
}Provides functionality for joining text objects together.