Enum bytemuck::PodCastError [−][src]
pub enum PodCastError { TargetAlignmentGreaterAndInputNotAligned, OutputSliceWouldHaveSlop, SizeMismatch, AlignmentMismatch, }
The things that can go wrong when casting between Pod
data forms.
Variants
You tried to cast a slice to an element type with a higher alignment requirement but the slice wasn’t aligned.
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.
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.
For this type of cast the alignments must be exactly the same and they were not so now you’re sad.
This error is generated only by operations that cast allocated types
(such as Box
and Vec
), because in that case the alignment must stay
exact.
Trait Implementations
impl Clone for PodCastError
[src]
fn clone(&self) -> PodCastError
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for PodCastError
[src]
impl Debug for PodCastError
[src]
impl Display for PodCastError
[src]
impl Eq for PodCastError
[src]
impl Hash for PodCastError
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl PartialEq<PodCastError> for PodCastError
[src]
fn eq(&self, other: &PodCastError) -> bool
[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool
1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,