Function object::pod::slice_from_bytes

source ยท
pub fn slice_from_bytes<T: Pod>(
    data: &[u8],
    count: usize
) -> Result<(&[T], &[u8]), ()>
Expand description

Cast the head of a byte slice to a slice of a Pod type.

Returns the type slice and the tail of the byte slice.

Returns an error if the byte slice is too short or the alignment is invalid.