Crate xmpp_parsers

Source
Expand description

A crate parsing common XMPP elements into Rust structures.

Each module implements the TryFrom<Element> trait, which takes a minidom Element and returns a Result whose value is Ok if the element parsed correctly, Err(error::Error) otherwise.

The returned structure can be manipulated as any Rust structure, with each field being public. You can also create the same structure manually, with some having new() and with_*() helper methods to create them.

Once you are happy with your structure, you can serialise it back to an Element, using either From or Into<Element>, which give you what you want to be sending on the wire.

Re-exports§

pub use blake2;
pub use jid;
pub use minidom;
pub use sha1;
pub use sha2;
pub use sha3;

Modules§

attention
XEP-0224: Attention
avatar
XEP-0084: User Avatar
bind
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
bind2
XEP-0386: Bind 2
blocking
XEP-0191: Blocking Command
bob
XEP-0231: Bits of Binary
bookmarks
XEP-0048: Bookmarks
bookmarks2
XEP-0402: PEP Native Bookmarks
caps
XEP-0115: Entity Capabilities
carbons
XEP-0280: Message Carbons
cert_management
XEP-0257: Client Certificate Management for SASL EXTERNAL
chatstates
XEP-0085: Chat State Notifications
component
XEP-0114: Jabber Component Protocol
consistent_color
XEP-0392: Consistent Color Generation
csi
XEP-0352: Client State Indication
data_forms
XEP-0004: Data Forms
data_forms_validate
XEP-0122: Data Forms Validation
date
XEP-0082: XMPP Date and Time Profiles
delay
XEP-0203: Delayed Delivery
disco
XEP-0030: Service Discovery
ecaps2
XEP-0390: Entity Capabilities 2.0
eme
XEP-0380: Explicit Message Encryption
extdisco
XEP-0215: External Service Discovery
fast
XEP-0484: Fast Authentication Streamlining Tokens
forwarding
XEP-0297: Stanza Forwarding
hashes
XEP-0300: Use of Cryptographic Hash Functions in XMPP
http_upload
XEP-0363: HTTP File Upload
ibb
XEP-0047: In-Band Bytestreams
ibr
XEP-0077: In-Band Registration
idle
XEP-0319: Last User Interaction in Presence
iq
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
jid_prep
XEP-0328: JID Prep
jingle
XEP-0166: Jingle
jingle_dtls_srtp
XEP-0320: Use of DTLS-SRTP in Jingle Sessions
jingle_ft
XEP-0234: Jingle File Transfer
jingle_grouping
XEP-0338: Jingle Grouping Framework
jingle_ibb
XEP-0261: Jingle In-Band Bytestreams Transport Method
jingle_ice_udp
XEP-0176: Jingle ICE-UDP Transport Method
jingle_message
XEP-0353: Jingle Message Initiation
jingle_raw_udp
XEP-0177: Jingle Raw UDP Transport Method
jingle_rtcp_fb
XEP-0293: Jingle RTP Feedback Negotiation
jingle_rtp
XEP-0167: Jingle RTP Sessions
jingle_rtp_hdrext
XEP-0294: Jingle RTP Header Extensions Negotiation
jingle_s5b
XEP-0260: Jingle SOCKS5 Bytestreams Transport Method
jingle_ssma
XEP-0339: Source-Specific Media Attributes in Jingle
jingle_thumbnails
XEP-0264: Jingle Content Thumbnails Jingle thumbnails (XEP-0264)
legacy_omemo
XEP-0380: OMEMO Encryption (experimental version 0.3.0)
mam
XEP-0313: Message Archive Management
mam_prefs
XEP-0441: Message Archive Management Preferences
media_element
XEP-0221: Data Forms Media Element
message
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
message_correct
XEP-0308: Last Message Correction
message_displayed
XEP-0490: Message Displayed Synchronization
mix
XEP-0369: Mediated Information eXchange (MIX)
mood
XEP-0107: User Mood
muc
XEP-0045: Multi-User Chat
nick
XEP-0172: User Nickname
ns
XML namespace definitions used through XMPP.
occupant_id
XEP-0421: Anonymous unique occupant identifiers for MUCs
oob
XEP-0066: OOB
openpgp
XEP-0373: OpenPGP for XMPP
ping
XEP-0199: XMPP Ping
presence
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
private
XEP-0049: Private XML storage
pubsub
XEP-0060: Publish-Subscribe
reactions
XEP-0444: Message Reactions
receipts
XEP-0184: Message Delivery Receipts
roster
RFC 6121: Extensible Messaging and Presence Protocol (XMPP): Instant Messaging and Presence
rsm
XEP-0059: Result Set Management
rtt
XEP-0301: In-Band Real Time Text
sasl
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
sasl2
XEP-0388: Extensible SASL Profile
sasl_cb
XEP-0440: SASL Channel-Binding Type Capability
server_info
XEP-0157: Contact Addresses for XMPP Services
sm
XEP-0198: Stream Management
spam_reporting
XEP-0377: Spam Reporting
stanza_error
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
stanza_id
XEP-0359: Unique and Stable Stanza IDs
starttls
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
stream
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
stream_error
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
stream_features
RFC 6120: Extensible Messaging and Presence Protocol (XMPP): Core
stream_limits
XEP-0478: Stream Limits Advertisement
time
XEP-0202: Entity Time
tune
XEP-0118: User Tune
vcard
XEP-0054: vcard-temp This module implements vCard, for the purpose of vCard-based avatars as defined in XEP-0054.
vcard_update
XEP-0153: vCard-Based Avatars This module implements vCard avatar updates defined in XEP-0153.
version
XEP-0092: Software Version
websocket
RFC 7395: An Extensible Messaging and Presence Protocol (XMPP) Subprotocol for WebSocket
xhtml
XEP-0071: XHTML-IM

Enums§

Error
Error variants generated while parsing or serialising XML data.