[][src]Crate byte_slice_cast

Safely cast bytes slices from/to slices of built-in fundamental numeric types.

The provided traits here allow safe casting between byte slices and slices of fundamental numeric types, like integers and floating point numbers. During casting, checks are performed to ensure that the output slice is safe to use: the input slice must be properly aligned for the output type and contain an integer number of values.

Instead of working only on slices, the traits work on AsRef<[T]> in the immutable case and on AsMut<[T]> for the mutable case. As such, it is possible to directly work on e.g. Vec<T> and Box<[T]> too.

The content of the output slice will be bitwise equivalent to the input slice, as such extra care has to be taken with regard to endianness.

Example

use byte_slice_cast::*;

let slice = [1u8, 2u8, 3u8, 4u8, 5u8, 6u8];
let converted_slice = slice.as_slice_of::<u16>().unwrap();

if cfg!(target_endian = "big") {
    assert_eq!(converted_slice, &[0x0102, 0x0304, 0x0506]);
} else {
    assert_eq!(converted_slice, &[0x0201, 0x0403, 0x0605]);
}

let converted_back_slice = converted_slice.as_byte_slice();
assert_eq!(converted_back_slice, &slice);

Example with mutable slices

use byte_slice_cast::*;

let mut slice = [0u8; 4];
{
    let mut converted_slice = slice.as_mut_slice_of::<u32>().unwrap();
    converted_slice[0] = 0x12345678;
}

if cfg!(target_endian = "big") {
    assert_eq!(&slice, &[0x12, 0x34, 0x56, 0x78]);
} else {
    assert_eq!(&slice, &[0x78, 0x56, 0x34, 0x12]);
}

Enums

Error

Possible errors during slice conversion.

Traits

AsByteSlice

Trait for converting from an immutable slice of a fundamental, built-in numeric type to an immutable byte slice.

AsMutByteSlice

Trait for converting from a mutable slice of a fundamental, built-in numeric type to a mutable byte slice. This trait is usually more convenient to use than ToMutByteSlice.

AsMutSliceOf

Trait for converting from a mutable byte slice to a mutable slice of a fundamental, built-in numeric type.

AsSliceOf

Trait for converting from a byte slice to a slice of a fundamental, built-in numeric type.

FromByteSlice

Trait for converting from a byte slice to a slice of a fundamental, built-in numeric type.

ToByteSlice

Trait for converting from an immutable slice of a fundamental, built-in numeric type to an immutable byte slice.

ToMutByteSlice

Trait for converting from a mutable slice of a fundamental, built-in numeric type to a mutable byte slice.