pub trait DelimiterSupport<'a> {
    type O;

    fn with_delimiter(self, delimiter: &'a str) -> Self::O;
}

Required Associated Types

Required Methods

Implementors