Trait bip_bencode::BMutAccess [] [src]

pub trait BMutAccess<'a>: Sized + BRefAccess<'a> {
    fn kind_mut<'b>(&'b mut self) -> BencodeMutKind<'b, 'a, Self::BType>;
    fn list_mut(&mut self) -> Option<&mut BListAccess<Self::BType>>;
    fn dict_mut(&mut self) -> Option<&mut BDictAccess<'a, Self::BType>>;
}

Trait for write access to some bencode type.

Required Methods

Access the bencode as a BencodeMutKind.

Attempt to access the bencode as a mutable BListAccess.

Attempt to access the bencode as a mutable BDictAccess.

Implementors