pub trait Separator {
    // Required method
    fn separator() -> &'static str;
}
Expand description

Separator for string-based collection de/serialization

Required Methods§

source

fn separator() -> &'static str

Return the string delimiting two elements in the string-based collection

Implementors§