[][src]Function bt_bencode::to_writer

pub fn to_writer<W, T: ?Sized>(writer: W, value: &T) -> Result<()> where
    W: Write,
    T: Serialize

Serializes an instance of T into the writer W as Bencode data.

Errors

Serialization can fail if T's implementation of Serialize decides to fail, if T contains unsupported types for serialization, or if T contains a map with non-string keys.