aboutsummaryrefslogtreecommitdiffstats
path: root/src/xml/mod.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2024-11-10 22:28:55 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2024-11-10 22:28:55 +0000
commit6d4832480b1804652bb4faa33b361ffb43734270 (patch)
treec79d65f833283d43e75f1cb4518a682b7933a049 /src/xml/mod.rs
parent140af50536ebc32ae6461852daa2df0fc2d197ca (diff)
downloadpeanuts-6d4832480b1804652bb4faa33b361ffb43734270.tar.gz
peanuts-6d4832480b1804652bb4faa33b361ffb43734270.tar.bz2
peanuts-6d4832480b1804652bb4faa33b361ffb43734270.zip
WIP: impl Stream for Reader
Diffstat (limited to 'src/xml/mod.rs')
-rw-r--r--src/xml/mod.rs18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/xml/mod.rs b/src/xml/mod.rs
index 221c334..9424d0b 100644
--- a/src/xml/mod.rs
+++ b/src/xml/mod.rs
@@ -47,6 +47,22 @@ pub enum QName<'s> {
UnprefixedName(UnprefixedName<'s>),
}
+impl<'s> QName<'s> {
+ pub fn prefix(&self) -> Option<&'s str> {
+ match self {
+ QName::PrefixedName(prefixed_name) => return Some(**prefixed_name.prefix),
+ QName::UnprefixedName(_) => return None,
+ }
+ }
+
+ pub fn local_part(&self) -> &str {
+ match self {
+ QName::PrefixedName(prefixed_name) => return **prefixed_name.local_part,
+ QName::UnprefixedName(unprefixed_name) => return ****unprefixed_name,
+ }
+ }
+}
+
impl<'s> ToString for QName<'s> {
fn to_string(&self) -> String {
match self {
@@ -473,7 +489,7 @@ pub struct ETag<'s> {
#[derive(Debug, Clone)]
pub enum ContentItem<'s> {
- // CharData(&'s str),
+ CharData(CharData<'s>),
Element(Element<'s>),
Reference(Reference<'s>),
CDSect(CDSect<'s>),