Trait parser_c::support::OpConcatable
[−]
pub trait OpConcatable {
type Item;
fn concat(self, right: Self::Item) -> Self;
}
Associated Types
type Item
Required Methods
Implementors
impl<A> OpConcatable for Vec<A>