Expand description
This crate gives small utilities for casting between plain data types.
Basics
Data comes in five basic forms in Rust, so we have five basic casting functions:
Tusescast&Tusescast_ref&mut Tusescast_mut&[T]usescast_slice&mut [T]usescast_slice_mut
Some casts will never fail (eg: cast::<u32, f32> always works), other
casts might fail (eg: cast_ref::<[u8; 4], u32> will fail if the reference
isn’t already aligned to 4). Each casting function has a “try” version which
will return a Result, and the “normal” version which will simply panic on
invalid input.
Using Your Own Types
All the functions here are guarded by the Pod trait, which is a
sub-trait of the Zeroable trait.
If you’re very sure that your type is eligible, you can implement those
traits for your type and then they’ll have full casting support. However,
these traits are unsafe, and you should carefully read the requirements
before adding the them to your own types.
Features
- This crate is core only by default, but if you’re using Rust 1.36 or later
you can enable the
extern_crate_alloccargo feature for some additional methods related toBoxandVec. Note that thedocs.rsdocumentation is always built withextern_crate_alloccargo feature enabled.
Re-exports
pub use checked::CheckedBitPattern;
Modules
- Checked versions of the casting functions exposed in crate root that support
CheckedBitPatterntypes.
Macros
- Find the offset in bytes of the given
$fieldof$Type. Requires an already initialized$instancevalue to work with.
Enums
- The things that can go wrong when casting between
Poddata forms.
Traits
- Marker trait for “plain old data” types that are valid for any bit pattern.
- A trait indicating that:
- Marker trait for “plain old data” types with no uninit (or padding) bytes.
- Marker trait for “plain old data”.
- A trait which indicates that a type is a
#[repr(transparent)]wrapper around theInnervalue. - Trait for types that can be safely created with
zeroed.
Functions
- Re-interprets
&Tas&[u8]. - Re-interprets
&mut Tas&mut [u8]. - Cast
TintoU - Cast
&mut Tinto&mut U. - Cast
&Tinto&U. - Cast
&[A]into&[B]. - Cast
&mut [T]into&mut [U]. - Fill all bytes of
slicewith zeroes (seeZeroable). - Re-interprets
&[u8]as&T. - Re-interprets
&mut [u8]as&mut T. - As
align_to, but safe because of thePodbound. - As
align_to_mut, but safe because of thePodbound. - Reads the slice into a
Tvalue. - Try to cast
TintoU. - Try to convert a
&mut Tinto&mut U. - Try to convert a
&Tinto&U. - Try to convert
&[A]into&[B](possibly with a change in length). - Try to convert
&mut [A]into&mut [B](possibly with a change in length). - Re-interprets
&[u8]as&T. - Re-interprets
&mut [u8]as&mut T. - Reads from the bytes as if they were a
T. - Fill all bytes of
targetwith zeroes (seeZeroable).