aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/src/stream_error.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2025-02-25 20:30:44 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2025-02-25 20:30:44 +0000
commit53ea2951ae49d1617a6a7de760d391fe0ea2b7a9 (patch)
tree17e8484a9bc6b05e320d77dd1c3f668af41c3006 /stanza/src/stream_error.rs
parentb859cd7f78495da90b947febabefdff82c02deb9 (diff)
downloadluz-53ea2951ae49d1617a6a7de760d391fe0ea2b7a9.tar.gz
luz-53ea2951ae49d1617a6a7de760d391fe0ea2b7a9.tar.bz2
luz-53ea2951ae49d1617a6a7de760d391fe0ea2b7a9.zip
implement Error for stanza crate error types
Diffstat (limited to '')
-rw-r--r--stanza/src/stream_error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/stanza/src/stream_error.rs b/stanza/src/stream_error.rs
index c1537ff..03d48eb 100644
--- a/stanza/src/stream_error.rs
+++ b/stanza/src/stream_error.rs
@@ -138,7 +138,7 @@ impl IntoElement for Error {
#[derive(Clone, Debug)]
pub struct Text {
- text: Option<String>,
+ pub text: Option<String>,
lang: Option<String>,
}