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

Required Methods

Implementations on Foreign Types

Implementors