ValidityError

Struct ValidityError 

Source
pub struct ValidityError<Src, Dst: ?Sized + TryFromBytes> {
    pub(crate) src: Src,
    dst: SendSyncPhantomData<Dst>,
}
Expand description

The error emitted if the conversion source contains invalid data.

Fields§

§src: Src

The source value involved in the conversion.

§dst: SendSyncPhantomData<Dst>

The inner destination type inolved in the conversion.

Implementations§

Source§

impl<Src, Dst: ?Sized + TryFromBytes> ValidityError<Src, Dst>

Source

pub(crate) fn new(src: Src) -> Self

Source

pub fn into_src(self) -> Src

Produces the source underlying the failed conversion.

Source

pub fn map_src<NewSrc>( self, f: impl FnOnce(Src) -> NewSrc, ) -> ValidityError<NewSrc, Dst>

Maps the source value associated with the conversion error.

This can help mitigate issues with Send, Sync and 'static bounds.

§Examples
use zerocopy::*;

let source: u8 = 42;

// Try to transmute the `source` to a `bool`. This will fail.
let maybe_bool: Result<bool, ValidityError<u8, bool>> = try_transmute!(source);

// Drop the error's source.
let maybe_bool: Result<bool, ValidityError<(), bool>> = maybe_bool.map_err(|err| {
    err.map_src(drop)
});
Source

pub(crate) fn into<A, S>(self) -> ConvertError<A, S, Self>

Converts the error into a general ConvertError.

Source

fn display_verbose_extras(&self, f: &mut Formatter<'_>) -> Result
where Dst: KnownLayout,

Format extra details for a verbose, human-readable error message.

This formatting may include potentially sensitive information.

Trait Implementations§

Source§

impl<Src, Dst: ?Sized + TryFromBytes> Debug for ValidityError<Src, Dst>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Src, Dst> Display for ValidityError<Src, Dst>
where Dst: KnownLayout + TryFromBytes + ?Sized,

Produces a human-readable error message.

The message differs between debug and release builds. When debug_assertions are enabled, this message is verbose and includes potentially sensitive information.

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Src: Eq, Dst: Eq + ?Sized + TryFromBytes> Eq for ValidityError<Src, Dst>

Source§

#[doc(hidden)] fn assert_receiver_is_total_eq(&self)

Source§

impl<Src, Dst> Error for ValidityError<Src, Dst>
where Dst: KnownLayout + TryFromBytes + ?Sized,

Available on rust="1.81.0" and crate feature std only.
1.30.0 · Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
Source§

#[doc(hidden)] fn type_id(&self, _: Internal) -> TypeId
where Self: 'static,

🔬This is a nightly-only experimental API. (error_type_id)
Gets the TypeId of self.
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<Src, Dst: ?Sized + TryFromBytes, A, S> From<ValidityError<Src, Dst>> for ConvertError<A, S, ValidityError<Src, Dst>>

Source§

fn from(err: ValidityError<Src, Dst>) -> Self

Converts to this type from the input type.
Source§

impl<Src: PartialEq, Dst: PartialEq + ?Sized + TryFromBytes> PartialEq for ValidityError<Src, Dst>

Source§

fn eq(&self, other: &ValidityError<Src, Dst>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<Src, Dst: ?Sized + TryFromBytes> StructuralPartialEq for ValidityError<Src, Dst>

Auto Trait Implementations§

§

impl<Src, Dst> Freeze for ValidityError<Src, Dst>
where Src: Freeze, Dst: ?Sized,

§

impl<Src, Dst> RefUnwindSafe for ValidityError<Src, Dst>
where Src: RefUnwindSafe, Dst: RefUnwindSafe + ?Sized,

§

impl<Src, Dst> Send for ValidityError<Src, Dst>
where Src: Send, Dst: ?Sized,

§

impl<Src, Dst> Sync for ValidityError<Src, Dst>
where Src: Sync, Dst: ?Sized,

§

impl<Src, Dst> Unpin for ValidityError<Src, Dst>
where Src: Unpin, Dst: Unpin + ?Sized,

§

impl<Src, Dst> UnwindSafe for ValidityError<Src, Dst>
where Src: UnwindSafe, Dst: UnwindSafe + ?Sized,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> SizeEq<Cell<T>> for T
where T: ?Sized,

Source§

fn cast_from_raw(t: PtrInner<'_, Cell<T>>) -> PtrInner<'_, T>

Source§

impl<T> SizeEq<D<T>> for T
where T: ?Sized,

Source§

fn cast_from_raw(t: PtrInner<'_, D<T>>) -> PtrInner<'_, T>

Source§

impl<T> SizeEq<D<T>> for T
where T: ?Sized,

Source§

fn cast_from_raw(t: PtrInner<'_, D<T>>) -> PtrInner<'_, T>

Source§

impl<T> SizeEq<ManuallyDrop<T>> for T
where T: ?Sized,

Source§

impl<T> SizeEq<MaybeUninit<T>> for T

Source§

impl<T> SizeEq<S<T>> for T
where T: ?Sized,

Source§

fn cast_from_raw(t: PtrInner<'_, S<T>>) -> PtrInner<'_, T>

Source§

impl<T> SizeEq<S<T>> for T
where T: ?Sized,

Source§

fn cast_from_raw(t: PtrInner<'_, S<T>>) -> PtrInner<'_, T>

Source§

impl<T> SizeEq<T> for T
where T: ?Sized,

Source§

fn cast_from_raw(t: PtrInner<'_, T>) -> PtrInner<'_, T>

Source§

impl<T> SizeEq<Unalign<T>> for T

Source§

impl<T> SizeEq<UnsafeCell<T>> for T
where T: ?Sized,

Source§

impl<T> SizeEq<Wrapping<T>> for T

Source§

impl<T> SizedTypeProperties for T

Source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
Source§

#[doc(hidden)] const LAYOUT: Layout = _

🔬This is a nightly-only experimental API. (sized_type_properties)
Source§

#[doc(hidden)] const MAX_SLICE_LEN: usize = _

🔬This is a nightly-only experimental API. (sized_type_properties)
The largest safe length for a [Self]. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> InvariantsEq<D<T>> for T
where T: ?Sized,

Source§

impl<T> InvariantsEq<D<T>> for T
where T: ?Sized,

Source§

impl<T> InvariantsEq<ManuallyDrop<T>> for T
where T: ?Sized,

Source§

impl<T> InvariantsEq<S<T>> for T
where T: ?Sized,

Source§

impl<T> InvariantsEq<S<T>> for T
where T: ?Sized,

Source§

impl<T> InvariantsEq<T> for T
where T: ?Sized,

Source§

impl<T> InvariantsEq<Unalign<T>> for T

Source§

impl<T> InvariantsEq<Wrapping<T>> for T

Source§

impl<Src, Dst, A, SV, DV, R, S> MutationCompatible<Src, A, SV, DV, (BecauseRead, (R, S))> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Src: Read<A, R> + ?Sized, Dst: Read<A, S> + ?Sized,

Source§

impl<Src, Dst, A, SV, DV> MutationCompatible<Src, A, SV, DV, BecauseInvariantsEq> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Src: TransmuteFrom<Dst, DV, SV> + ?Sized, Dst: TransmuteFrom<Src, SV, DV> + InvariantsEq<Src> + ?Sized,

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Sized for T

Source§

impl<T> TransmuteFrom<Cell<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<D<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<D<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<ManuallyDrop<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<S<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<S<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<Src, Dst> TransmuteFrom<Src, Initialized, Initialized> for Dst
where Src: ?Sized, Dst: ?Sized,

Source§

impl<Src, Dst, V> TransmuteFrom<Src, V, Uninit> for Dst
where V: Validity, Src: ?Sized, Dst: ?Sized,

Source§

impl<Src, Dst> TransmuteFrom<Src, Valid, Initialized> for Dst
where Src: IntoBytes + ?Sized, Dst: ?Sized,

Source§

impl<T> TransmuteFrom<Unalign<T>, Valid, Valid> for T

Source§

impl<T> TransmuteFrom<UnsafeCell<T>, Valid, Valid> for T
where T: ?Sized,

Source§

impl<T> TransmuteFrom<Wrapping<T>, Valid, Valid> for T

Source§

impl<Src, Dst, A, SV, DV, R> TransmuteFromPtr<Src, A, SV, DV, R> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Dst: TransmuteFrom<Src, SV, DV> + TryTransmuteFromPtr<Src, A, SV, DV, R> + ?Sized, Src: ?Sized,

Source§

impl<Src, Dst, SV, DV, A, R> TryTransmuteFromPtr<Src, A, SV, DV, (BecauseMutationCompatible, R)> for Dst
where A: Aliasing, SV: Validity, DV: Validity, Src: TransmuteFrom<Dst, DV, SV> + ?Sized, Dst: MutationCompatible<Src, A, SV, DV, R> + SizeEq<Src> + ?Sized,