diff options
Diffstat (limited to 'src/writer.rs')
-rw-r--r-- | src/writer.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/writer.rs b/src/writer.rs index 456a5a1..08be8c2 100644 --- a/src/writer.rs +++ b/src/writer.rs @@ -5,8 +5,9 @@ use crate::{ error::Error, }; +// pub struct Writer<W, C = Composer> { pub struct Writer<W> { - stream: W, + writer: W, depth: Vec<Name>, namespaces: Vec<(usize, Namespace)>, } |