diff --git a/fish-rust/src/io.rs b/fish-rust/src/io.rs index 110b81fbe..50b0d5524 100644 --- a/fish-rust/src/io.rs +++ b/fish-rust/src/io.rs @@ -37,8 +37,8 @@ pub enum SeparationType { } pub struct BufferElement { - contents: Vec, - separation: SeparationType, + pub contents: Vec, + pub separation: SeparationType, } impl BufferElement {