BencodeValueOwned

Type Alias BencodeValueOwned 

Source
pub type BencodeValueOwned = BencodeValue<ByteBufOwned>;

Aliased Type§

pub enum BencodeValueOwned {
    Bytes(ByteBufOwned),
    Integer(i64),
    List(Vec<BencodeValue<ByteBufOwned>>),
    Dict(HashMap<ByteBufOwned, BencodeValue<ByteBufOwned>>),
}

Variants§