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