diff options
author | 2024-11-01 18:36:11 +0000 | |
---|---|---|
committer | 2024-11-01 18:36:11 +0000 | |
commit | d0a8d25d256a72c18a1dde14fdb77b732f4f3ac7 (patch) | |
tree | 28673af3643a38298ea481e3d24a4f3dbc64e145 /src/writer.rs | |
parent | c6c3c1b403ecc70b759b1e1d371f414c63211e82 (diff) | |
download | peanuts-d0a8d25d256a72c18a1dde14fdb77b732f4f3ac7.tar.gz peanuts-d0a8d25d256a72c18a1dde14fdb77b732f4f3ac7.tar.bz2 peanuts-d0a8d25d256a72c18a1dde14fdb77b732f4f3ac7.zip |
WIP: XML composers
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)>, } |