more of a ClientEvent api

This commit is contained in:
Astro 2017-07-13 01:47:05 +02:00
commit 7f667041d9
3 changed files with 52 additions and 29 deletions

31
src/client/event.rs Normal file
View file

@ -0,0 +1,31 @@
use xml;
#[derive(Debug)]
pub enum Event {
Online,
Disconnected,
Stanza(xml::Element),
}
impl Event {
pub fn is_online(&self) -> bool {
match self {
&Event::Online => true,
_ => false,
}
}
pub fn is_stanza(&self, name: &str) -> bool {
match self {
&Event::Stanza(ref stanza) => stanza.name == name,
_ => false,
}
}
pub fn as_stanza(&self) -> Option<&xml::Element> {
match self {
&Event::Stanza(ref stanza) => Some(stanza),
_ => None,
}
}
}