pub fn put_u32(payload: &mut [u8], off: usize, v: u32) -> Option<()>
Write a u32 at offset off (little-endian).
u32
off
Returns None if the write would overflow the payload.
None