ToNelf

Trait ToNelf 

Source
pub trait ToNelf: ToNelfSealed {
    // Required method
    fn to_nelf(self) -> Vec<u8> ;
}
Expand description

Trait used to convert containers of strings to NELF strings.

Already implemented for all iterables of byte slices. Sealed.

Required Methods§

Source

fn to_nelf(self) -> Vec<u8>

Converts the list of strings into a NELF string.

Implementors§

Source§

impl<T: IntoIterator<Item = V>, V: ToCell> ToNelf for T