pub struct AlignmentError<Src, Dst: ?Sized> { /* private fields */ }
Expand description
The error emitted if the conversion source is improperly aligned.
Implementations§
Source§impl<Src, Dst: ?Sized> AlignmentError<Src, Dst>
impl<Src, Dst: ?Sized> AlignmentError<Src, Dst>
Sourcepub fn map_src<NewSrc>(
self,
f: impl FnOnce(Src) -> NewSrc,
) -> AlignmentError<NewSrc, Dst>
pub fn map_src<NewSrc>( self, f: impl FnOnce(Src) -> NewSrc, ) -> AlignmentError<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 unaligned = Unalign::new(0u16);
// Attempt to deref `unaligned`. This might fail with an alignment error.
let maybe_n: Result<&u16, AlignmentError<&Unalign<u16>, u16>> = unaligned.try_deref();
// Map the error's source to its address as a usize.
let maybe_n: Result<&u16, AlignmentError<usize, u16>> = maybe_n.map_err(|err| {
err.map_src(|src| src as *const _ as usize)
});
Trait Implementations§
Source§impl<Src, Dst: ?Sized> Debug for AlignmentError<Src, Dst>
impl<Src, Dst: ?Sized> Debug for AlignmentError<Src, Dst>
Source§impl<Src, Dst> Display for AlignmentError<Src, Dst>
impl<Src, Dst> Display for AlignmentError<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 AlignmentError<Src, Dst>
Available on rust="1.81.0"
and crate feature std
only.
impl<Src, Dst> Error for AlignmentError<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, S, V> From<AlignmentError<Src, Dst>> for ConvertError<AlignmentError<Src, Dst>, S, V>
impl<Src, Dst: ?Sized, S, V> From<AlignmentError<Src, Dst>> for ConvertError<AlignmentError<Src, Dst>, S, V>
Source§fn from(err: AlignmentError<Src, Dst>) -> Self
fn from(err: AlignmentError<Src, Dst>) -> Self
Converts to this type from the input type.
Source§impl<Src, Dst: ?Sized + Unaligned> From<AlignmentError<Src, Dst>> for Infallible
impl<Src, Dst: ?Sized + Unaligned> From<AlignmentError<Src, Dst>> for Infallible
Source§fn from(_: AlignmentError<Src, Dst>) -> Infallible
fn from(_: AlignmentError<Src, Dst>) -> Infallible
Converts to this type from the input type.
impl<Src: Eq, Dst: Eq + ?Sized> Eq for AlignmentError<Src, Dst>
impl<Src, Dst: ?Sized> StructuralPartialEq for AlignmentError<Src, Dst>
Auto Trait Implementations§
impl<Src, Dst> Freeze for AlignmentError<Src, Dst>
impl<Src, Dst> RefUnwindSafe for AlignmentError<Src, Dst>
impl<Src, Dst> Send for AlignmentError<Src, Dst>
impl<Src, Dst> Sync for AlignmentError<Src, Dst>
impl<Src, Dst> Unpin for AlignmentError<Src, Dst>
impl<Src, Dst> UnwindSafe for AlignmentError<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