kernel::transmute

Trait FromBytes

Source
pub unsafe trait FromBytes { }
Expand description

Types for which any bit pattern is valid.

Not all types are valid for all values. For example, a bool must be either zero or one, so reading arbitrary bytes into something that contains a bool is not okay.

It’s okay for the type to have padding, as initializing those bytes has no effect.

§Safety

All bit-patterns must be valid for this type. This type must not have interior mutability.

Implementations on Foreign Types§

Source§

impl FromBytes for i8

Source§

impl FromBytes for i16

Source§

impl FromBytes for i32

Source§

impl FromBytes for i64

Source§

impl FromBytes for isize

Source§

impl FromBytes for u8

Source§

impl FromBytes for u16

Source§

impl FromBytes for u32

Source§

impl FromBytes for u64

Source§

impl FromBytes for usize

Source§

impl<T: FromBytes> FromBytes for [T]

Source§

impl<T: FromBytes, const N: usize> FromBytes for [T; N]

Implementors§