pub struct ValidityError<Src, Dst: ?Sized + TryFromBytes> { /* private fields */ }
Expand description
The error emitted if the conversion source contains invalid data.
Implementations§
Source§impl<Src, Dst: ?Sized + TryFromBytes> ValidityError<Src, Dst>
impl<Src, Dst: ?Sized + TryFromBytes> ValidityError<Src, Dst>
Sourcepub fn map_src<NewSrc>(
self,
f: impl FnOnce(Src) -> NewSrc,
) -> ValidityError<NewSrc, Dst>
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)
});
Trait Implementations§
Source§impl<Src, Dst: ?Sized + TryFromBytes> Debug for ValidityError<Src, Dst>
impl<Src, Dst: ?Sized + TryFromBytes> Debug for ValidityError<Src, Dst>
Source§impl<Src, Dst> Display for ValidityError<Src, Dst>
impl<Src, Dst> Display for ValidityError<Src, Dst>
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§impl<Src, Dst> Error for ValidityError<Src, Dst>
Available on rust="1.81.0"
and crate feature std
only.
impl<Src, Dst> Error for ValidityError<Src, Dst>
Available on
rust="1.81.0"
and crate feature std
only.1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl<Src, Dst: ?Sized + TryFromBytes, A, S> From<ValidityError<Src, Dst>> for ConvertError<A, S, ValidityError<Src, Dst>>
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
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>
impl<Src: PartialEq, Dst: PartialEq + ?Sized + TryFromBytes> PartialEq for ValidityError<Src, Dst>
impl<Src: Eq, Dst: Eq + ?Sized + TryFromBytes> Eq for ValidityError<Src, Dst>
impl<Src, Dst: ?Sized + TryFromBytes> StructuralPartialEq for ValidityError<Src, Dst>
Auto Trait Implementations§
impl<Src, Dst> Freeze for ValidityError<Src, Dst>
impl<Src, Dst> RefUnwindSafe for ValidityError<Src, Dst>
impl<Src, Dst> Send for ValidityError<Src, Dst>
impl<Src, Dst> Sync for ValidityError<Src, Dst>
impl<Src, Dst> Unpin for ValidityError<Src, Dst>
impl<Src, Dst> UnwindSafe for ValidityError<Src, Dst>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more