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

Bencode Integer.

Bencode Bytes.

Bencode List.

Bencode Dictionary.