message, presence, iq: Improve documentation.

This commit is contained in:
Emmanuel Gil Peyrot 2017-07-20 23:10:13 +01:00
parent 5df585ca40
commit 87af0f3615
4 changed files with 13 additions and 2 deletions

View file

@ -190,6 +190,7 @@ impl<'a> IntoAttributeValue for &'a IqType {
}
}
/// The main structure representing the `<iq/>` stanza.
#[derive(Debug, Clone)]
pub struct Iq {
pub from: Option<Jid>,

View file

@ -58,7 +58,11 @@ macro_rules! generate_attribute {
($elem:ident, $name:tt, {$($a:ident => $b:tt),+}) => (
#[derive(Debug, Clone, PartialEq)]
pub enum $elem {
$($a),+
$(
#[doc=$b]
#[doc="value for this attribute."]
$a
),+
}
impl FromStr for $elem {
type Err = Error;
@ -80,7 +84,11 @@ macro_rules! generate_attribute {
($elem:ident, $name:tt, {$($a:ident => $b:tt),+}, Default = $default:ident) => (
#[derive(Debug, Clone, PartialEq)]
pub enum $elem {
$($a),+
$(
#[doc=$b]
#[doc="value for this attribute."]
$a
),+
}
impl FromStr for $elem {
type Err = Error;

View file

@ -115,6 +115,7 @@ type Body = String;
type Subject = String;
type Thread = String;
/// The main structure representing the `<message/>` stanza.
#[derive(Debug, Clone)]
pub struct Message {
pub from: Option<Jid>,

View file

@ -186,6 +186,7 @@ impl IntoAttributeValue for Type {
}
}
/// The main structure representing the `<presence/>` stanza.
#[derive(Debug, Clone)]
pub struct Presence {
pub from: Option<Jid>,