Enum bip_bencode::BencodeRefKind [] [src]

pub enum BencodeRefKind<'b, 'a: 'b, T: 'b> {
    Int(i64),
    Bytes(&'a [u8]),
    List(&'b BListAccess<T>),
    Dict(&'b BDictAccess<'a, T>),
}

Abstract representation of a BencodeRef object.

Variants

Bencode Integer.

Bencode Bytes.

Bencode List.

Bencode Dictionary.