pub trait Pushable<T: ?Sized> {
// Required method
fn push(&mut self, other: &T);
}Expand description
Trait for text objects that can have content pushed into them without changing type.
pub trait Pushable<T: ?Sized> {
// Required method
fn push(&mut self, other: &T);
}Trait for text objects that can have content pushed into them without changing type.