diff options
author | 2025-03-27 14:57:48 +0000 | |
---|---|---|
committer | 2025-03-27 14:57:48 +0000 | |
commit | 83a6aa0574190137b38331bd53795324139237cf (patch) | |
tree | 0cfbe858fb09325d8347b15b641a06df8d82db15 /filamento/src/lib.rs | |
parent | e703284539384b461d204c73e7e14daead3f06d9 (diff) | |
download | luz-83a6aa0574190137b38331bd53795324139237cf.tar.gz luz-83a6aa0574190137b38331bd53795324139237cf.tar.bz2 luz-83a6aa0574190137b38331bd53795324139237cf.zip |
feat: remove `UpdateMessage::Error` variant
Diffstat (limited to 'filamento/src/lib.rs')
-rw-r--r-- | filamento/src/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/filamento/src/lib.rs b/filamento/src/lib.rs index b284c7e..1e9207c 100644 --- a/filamento/src/lib.rs +++ b/filamento/src/lib.rs @@ -101,7 +101,6 @@ pub enum Command { #[derive(Debug, Clone)] pub enum UpdateMessage { - Error(Error), Online(Online, Vec<Contact>), Offline(Offline), /// received roster from jabber server (replace full app roster state with this) @@ -122,7 +121,6 @@ pub enum UpdateMessage { message: Message, }, SubscriptionRequest(jid::JID), - Unsupported(Stanza), } /// an xmpp client that is suited for a chat client use case |