diff options
author | HampusM <hampus@hampusmat.com> | 2023-05-14 16:29:37 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-05-14 16:29:37 +0200 |
commit | 4d6664fb369607d42c269a8a50f26bfd3c3b8634 (patch) | |
tree | e1025e69d7d94f622e0e12cd1f279ec981baafcb /src/attribute.rs | |
parent | 0f44f2f36c3fa594e8bf9c0b23b7b8041cc6d13e (diff) |
feat: add TagStart attribute functions
Diffstat (limited to 'src/attribute.rs')
-rw-r--r-- | src/attribute.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/attribute.rs b/src/attribute.rs index 4ae2142..3d17fe9 100644 --- a/src/attribute.rs +++ b/src/attribute.rs @@ -85,6 +85,11 @@ impl<'a> Attribute<'a> { Self { inner } } + + pub(crate) fn into_inner(self) -> QuickXMLAttribute<'a> + { + self.inner + } } /// Errors that can be raised when parsing [`Attribute`]s. |