What is bencode? It's the encoding mostly used in .torrent
files and BitTorrent protocol.
For more info see BitTorrentSpecification#Bencoding.
See examples
directory
```rust
struct MetaInfo {
info: Info,
announce: String,
#[serde(rename = "announce-list")]
announcelist: Option
fn main(){ let string = serdebencoded::tostring(&MetaInfo{...}).unwrap; let mi: MetaInfo = serdebencoded::fromstr(&string).unwrap(); } ```