presence: Remove now-unused enum values.

This commit is contained in:
Emmanuel Gil Peyrot 2017-05-18 23:32:26 +01:00
parent e52817e5cd
commit fe8dccd5df

View file

@ -48,9 +48,6 @@ pub type Priority = i8;
/// Lists every known payload of a `<presence/>`. /// Lists every known payload of a `<presence/>`.
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub enum PresencePayload { pub enum PresencePayload {
Show(Show),
Status(Status),
Priority(Priority),
StanzaError(StanzaError), StanzaError(StanzaError),
Delay(Delay), Delay(Delay),
ECaps2(ECaps2), ECaps2(ECaps2),
@ -213,24 +210,6 @@ impl<'a> TryFrom<&'a Element> for Presence {
impl<'a> Into<Element> for &'a PresencePayload { impl<'a> Into<Element> for &'a PresencePayload {
fn into(self) -> Element { fn into(self) -> Element {
match *self { match *self {
PresencePayload::Show(ref show) => {
Element::builder("status")
.ns(ns::JABBER_CLIENT)
.append(show.to_owned())
.build()
},
PresencePayload::Status(ref status) => {
Element::builder("status")
.ns(ns::JABBER_CLIENT)
.append(status.to_owned())
.build()
},
PresencePayload::Priority(ref priority) => {
Element::builder("status")
.ns(ns::JABBER_CLIENT)
.append(format!("{}", priority))
.build()
},
PresencePayload::StanzaError(ref stanza_error) => stanza_error.into(), PresencePayload::StanzaError(ref stanza_error) => stanza_error.into(),
PresencePayload::Delay(ref delay) => delay.into(), PresencePayload::Delay(ref delay) => delay.into(),
PresencePayload::ECaps2(ref ecaps2) => ecaps2.into(), PresencePayload::ECaps2(ref ecaps2) => ecaps2.into(),