[][src]Enum bytemuck::PodCastError

pub enum PodCastError {
    TargetAlignmentGreaterAndInputNotAligned,
    OutputSliceWouldHaveSlop,
    SizeMismatch,
    AlignmentMismatch,
}

The things that can go wrong when casting between Pod data forms.

Variants

TargetAlignmentGreaterAndInputNotAligned

You tried to cast a slice to an element type with a higher alignment requirement but the slice wasn't aligned.

OutputSliceWouldHaveSlop

If the element size changes then the output slice changes length accordingly. If the output slice wouldn't be a whole number of elements then the conversion fails.

SizeMismatch

When casting a slice you can't convert between ZST elements and non-ZST elements. When casting an individual T, &T, or &mut T value the source size and destination size must be an exact match.

AlignmentMismatch

For this type of cast the alignments must be exactly the same and they were not so now you're sad.

Trait Implementations

impl Clone for PodCastError[src]

impl Copy for PodCastError[src]

impl Debug for PodCastError[src]

impl Eq for PodCastError[src]

impl PartialEq<PodCastError> for PodCastError[src]

impl StructuralEq for PodCastError[src]

impl StructuralPartialEq for PodCastError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.