Enum bip_bencode::BencodeMutKind
[−]
[src]
pub enum BencodeMutKind<'b, 'a: 'b, T: 'b> {
Int(i64),
Bytes(&'a [u8]),
List(&'b mut BListAccess<T>),
Dict(&'b mut BDictAccess<'a, T>),
}Abstract representation of a BencodeMut object.
Variants
Int(i64)Bencode Integer.
Bytes(&'a [u8])Bencode Bytes.
List(&'b mut BListAccess<T>)Bencode List.
Dict(&'b mut BDictAccess<'a, T>)Bencode Dictionary.