libstrophe 0.17.0

Rust ergonomic wrapper for libstrophe
Documentation
1
2
3
4
5
6
7
8
9
10
error[E0597]: `stanza` does not live long enough
 --> src/tests/fail/stanza_too_short.rs:6:3
  |
4 |     let _a = {
  |         -- borrow later stored here
5 |         let stanza = Stanza::new();
6 |         stanza.get_first_child()
  |         ^^^^^^^^^^^^^^^^^^^^^^^^ borrowed value does not live long enough
7 |     };
  |     - `stanza` dropped here while still borrowed