ItemDetail::as_client_bytes should return ([u8; 12], [u8; 4]) to go along with how pso splits those two fields in structures. this would allow the removal of a lot of error handling/unwraps when using try_into to convert the slices into arrays.
`ItemDetail::as_client_bytes` should return `([u8; 12], [u8; 4])` to go along with how pso splits those two fields in structures. this would allow the removal of a lot of error handling/unwraps when using `try_into` to convert the slices into arrays.
ItemDetail::as_client_bytes
should return([u8; 12], [u8; 4])
to go along with how pso splits those two fields in structures. this would allow the removal of a lot of error handling/unwraps when usingtry_into
to convert the slices into arrays.