[][src]Enum lokacore::PodCastError

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

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.

CantConvertBetweenZSTAndNonZST

You tried to cast between a zero-sized type and a non-zero-sized type. Because the output slice resizes based on the input and output types, it's fairly nonsensical to throw a ZST into the mix. You can go from a ZST to another ZST, if you want.

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 an individual T, &T, or &mut T value the source size and destination size must be an exact match.

Trait Implementations

impl Debug for PodCastError[src]

impl PartialEq<PodCastError> for PodCastError[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl Eq for PodCastError[src]

impl Copy for PodCastError[src]

impl Clone for PodCastError[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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.

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

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

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