Function bytemuck::allocation::try_cast_vec [−][src]
pub fn try_cast_vec<A: NoUninit, B: AnyBitPattern>(
input: Vec<A>
) -> Result<Vec<B>, (PodCastError, Vec<A>)>Expand description
Attempts to cast the content type of a Vec.
On failure you get back an error along with the starting Vec.
Failure
- The start and end content type of the
Vecmust have the exact same alignment. - The start and end size of the
Vecmust have the exact same size. - In the future this second restriction might be lessened by having the capacity and length get adjusted during transmutation, but for now it’s absolute.
