diff options
Diffstat (limited to 'stanza/src/stream.rs')
-rw-r--r-- | stanza/src/stream.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stanza/src/stream.rs b/stanza/src/stream.rs index 8e1982f..732a826 100644 --- a/stanza/src/stream.rs +++ b/stanza/src/stream.rs @@ -181,8 +181,8 @@ impl FromElement for Feature { #[derive(Error, Debug, Clone)] pub struct Error { - error: StreamError, - text: Option<Text>, + pub error: StreamError, + pub text: Option<Text>, } impl Display for Error { |