Enum bencoders::Bencode [] [src]

pub enum Bencode {
    Bytes(Vec<u8>),
    Int(i64),
    List(Vec<Bencode>),
    Dict(HashMap<Vec<u8>, Bencode>),
}

Variants

Trait Implementations

impl Debug for Bencode
[src]

Formats the value using the given formatter.

impl Clone for Bencode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more