pub trait RawPatchWithContext<'de, Context>: RawDecode<'de> {
    fn patch(
        self,
        diff: &'de [u8],
        _: &mut Context
    ) -> BuckyResult<(Self, &'de [u8])>; }

Required Methods

Implementors