macros, pubsub: Fix build failure introduced in the previous commit.

This commit is contained in:
Emmanuel Gil Peyrot 2019-07-17 22:30:49 +02:00
commit 2234bb76f2
2 changed files with 2 additions and 2 deletions

View file

@ -73,4 +73,4 @@ impl Item {
}
/// This trait should be implemented on any element which can be included as a PubSub payload.
pub trait PubSubPayload: crate::TryFrom<crate::Element> + Into<crate::Element> {}
pub trait PubSubPayload: ::std::convert::TryFrom<crate::Element> + Into<crate::Element> {}