pub type Line = Vec<u8>;
One line’s content, without its newline. Vec<Vec<u8>> splits preserve the trailing empty element that encodes “ends with a newline”.
Vec<Vec<u8>>
pub struct Line { /* private fields */ }