[][src]Trait parsers::Concat

pub trait Concat<L, R> where
    Self: Sized
{ fn empty() -> Self;
fn concat(l: L, r: R) -> Self; }

Required methods

fn empty() -> Self

fn concat(l: L, r: R) -> Self

Loading content...

Implementations on Foreign Types

impl<L, R> Concat<L, R> for String where
    L: Into<String>,
    R: AsRef<str>, 
[src]

impl<'l, 'r: 'l> Concat<&'l str, &'r str> for &'l str[src]

impl<T> Concat<Vec<T>, T> for Vec<T>[src]

Loading content...

Implementors

Loading content...