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
Int(i64)Bencode Integer.
Bytes(&'a [u8])Bencode Bytes.
List(&'b BListAccess<T>)Bencode List.
Dict(&'b BDictAccess<'a, T>)Bencode Dictionary.