pub trait RawDiffWithContext<'v, Context>: RawEncode {
    fn diff_measure(&self, right: &'v Self, _: &mut Context) -> BuckyResult<usize>;
    fn diff<'d>(
        &self,
        right: &Self,
        buf: &'d mut [u8],
        _: &mut Context
    ) -> BuckyResult<&'d mut [u8]>; }

Required Methods

Implementations on Foreign Types

Implementors