diff options
author | 2025-02-25 20:50:23 +0000 | |
---|---|---|
committer | 2025-02-25 20:50:23 +0000 | |
commit | 76b00cd644768d6a1b66b50b802bb72e2be228ce (patch) | |
tree | bd9e5c6a7df6c00fb68692cdb6b39c6912658054 /stanza | |
parent | d30131e0fcf7d64a333493bc430baa02fd156f4d (diff) | |
download | luz-76b00cd644768d6a1b66b50b802bb72e2be228ce.tar.gz luz-76b00cd644768d6a1b66b50b802bb72e2be228ce.tar.bz2 luz-76b00cd644768d6a1b66b50b802bb72e2be228ce.zip |
implement Clone for error types
Diffstat (limited to 'stanza')
-rw-r--r-- | stanza/src/stream.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stanza/src/stream.rs b/stanza/src/stream.rs index 60b13bc..8e1982f 100644 --- a/stanza/src/stream.rs +++ b/stanza/src/stream.rs @@ -179,7 +179,7 @@ impl FromElement for Feature { } } -#[derive(Error, Debug)] +#[derive(Error, Debug, Clone)] pub struct Error { error: StreamError, text: Option<Text>, |