aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/src/client/iq.rs
diff options
context:
space:
mode:
Diffstat (limited to 'stanza/src/client/iq.rs')
-rw-r--r--stanza/src/client/iq.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/stanza/src/client/iq.rs b/stanza/src/client/iq.rs
index 5f5ccd2..41f87fd 100644
--- a/stanza/src/client/iq.rs
+++ b/stanza/src/client/iq.rs
@@ -10,12 +10,14 @@ use crate::{
bind::{self, Bind},
client::error::Error,
roster,
- xep_0199::{self, Ping},
};
#[cfg(feature = "xep_0030")]
use crate::xep_0030::{self, info, items};
+#[cfg(feature = "xep_0199")]
+use crate::xep_0199::{self, Ping};
+
use super::XMLNS;
#[derive(Debug, Clone)]
@@ -38,6 +40,7 @@ pub enum Query {
DiscoInfo(info::Query),
#[cfg(feature = "xep_0030")]
DiscoItems(items::Query),
+ #[cfg(feature = "xep_0199")]
Ping(Ping),
Roster(roster::Query),
Unsupported,
@@ -47,6 +50,7 @@ impl FromElement for Query {
fn from_element(element: peanuts::Element) -> peanuts::element::DeserializeResult<Self> {
match element.identify() {
(Some(bind::XMLNS), "bind") => Ok(Query::Bind(Bind::from_element(element)?)),
+ #[cfg(feature = "xep_0199")]
(Some(xep_0199::XMLNS), "ping") => Ok(Query::Ping(Ping::from_element(element)?)),
(Some(roster::XMLNS), "query") => {
Ok(Query::Roster(roster::Query::from_element(element)?))
@@ -68,6 +72,7 @@ impl IntoElement for Query {
fn builder(&self) -> peanuts::element::ElementBuilder {
match self {
Query::Bind(bind) => bind.builder(),
+ #[cfg(feature = "xep_0199")]
Query::Ping(ping) => ping.builder(),
Query::Roster(query) => query.builder(),
// TODO: consider what to do if attempt to serialize unsupported