Make IO buffer struct elements public again

This commit is contained in:
Johannes Altmanninger 2023-04-22 21:43:58 +02:00
parent 1bffa823d8
commit 0fbefc6be2

View File

@ -37,8 +37,8 @@ pub enum SeparationType {
}
pub struct BufferElement {
contents: Vec<u8>,
separation: SeparationType,
pub contents: Vec<u8>,
pub separation: SeparationType,
}
impl BufferElement {