libstrophe 0.20.3

Rust ergonomic wrapper for libstrophe
Documentation
1
2
3
4
5
6
7
use libstrophe::Stanza;

fn main() {
	let mut stanza = Stanza::new();
	let _a = stanza.children();
	stanza.get_first_child_mut();
}