pub fn fixed_size_diff<'a>(
before: &'a [u8],
after: &'a [u8],
manifest: &'a LayoutManifest,
) -> Result<Vec<FieldDelta<'a>>, DiffError>Expand description
Compute a fixed-size diff (no resize). Returns a list of FieldDeltas
. one per changed field.
ยงErrors
LengthMismatchifbefore.len() != after.len().BufferTooShortif either input is shorter thanmanifest.total_size.