diff options
author | 2024-11-20 16:43:34 +0000 | |
---|---|---|
committer | 2024-11-20 16:43:34 +0000 | |
commit | c1e6f7e918eacaad9c8b1a4b27fcd4d6245aaf68 (patch) | |
tree | 07640279a1d5a3a7f527f0def5ea7d3d1409f5ad /src/xml/mod.rs | |
parent | 49c8d52f0d4a41c340dd73c945119e69cf345a42 (diff) | |
download | peanuts-c1e6f7e918eacaad9c8b1a4b27fcd4d6245aaf68.tar.gz peanuts-c1e6f7e918eacaad9c8b1a4b27fcd4d6245aaf68.tar.bz2 peanuts-c1e6f7e918eacaad9c8b1a4b27fcd4d6245aaf68.zip |
implement element writing
Diffstat (limited to '')
-rw-r--r-- | src/xml/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml/mod.rs b/src/xml/mod.rs index 8fb5419..3150df0 100644 --- a/src/xml/mod.rs +++ b/src/xml/mod.rs @@ -17,7 +17,7 @@ pub enum NSAttName<'s> { /// [2] PrefixedAttName ::= 'xmlns:' NCName #[derive(Clone, Debug)] -pub struct PrefixedAttName<'s>(NCName<'s>); +pub struct PrefixedAttName<'s>(pub NCName<'s>); impl<'s> Deref for PrefixedAttName<'s> { type Target = NCName<'s>; |