pub struct SizeError<Src, Dst: ?Sized> { /* private fields */ }
Expand description
The error emitted if the conversion source is of incorrect size.
Implementations§
Source§impl<Src, Dst: ?Sized> SizeError<Src, Dst>
impl<Src, Dst: ?Sized> SizeError<Src, Dst>
Sourcepub fn map_src<NewSrc>(
self,
f: impl Fn(Src) -> NewSrc,
) -> SizeError<NewSrc, Dst>
pub fn map_src<NewSrc>( self, f: impl Fn(Src) -> NewSrc, ) -> SizeError<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; 3] = [0, 1, 2];
// Try to read a `u32` from `source`. This will fail because there are insufficient
// bytes in `source`.
let maybe_u32: Result<u32, SizeError<&[u8], u32>> = u32::read_from_bytes(&source[..]);
// Map the error's source to its size.
let maybe_u32: Result<u32, SizeError<usize, u32>> = maybe_u32.map_err(|err| {
err.map_src(|src| src.len())
});
Trait Implementations§
Source§impl<Src, Dst> Display for SizeError<Src, Dst>where
Src: Deref,
Dst: KnownLayout + ?Sized,
impl<Src, Dst> Display for SizeError<Src, Dst>where
Src: Deref,
Dst: KnownLayout + ?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§impl<Src, Dst> Error for SizeError<Src, Dst>where
Src: Deref,
Dst: KnownLayout + ?Sized,
impl<Src, Dst> Error for SizeError<Src, Dst>where
Src: Deref,
Dst: KnownLayout + ?Sized,
1.30.0§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§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 + Unaligned> From<ConvertError<AlignmentError<Src, Dst>, SizeError<Src, Dst>, Infallible>> for SizeError<Src, Dst>
impl<Src, Dst: ?Sized + Unaligned> From<ConvertError<AlignmentError<Src, Dst>, SizeError<Src, Dst>, Infallible>> for SizeError<Src, Dst>
Source§fn from(err: CastError<Src, Dst>) -> SizeError<Src, Dst>
fn from(err: CastError<Src, Dst>) -> SizeError<Src, Dst>
Infallibly extracts the SizeError
from this CastError
since Dst
is unaligned.
Since Dst: Unaligned
, it is impossible to encounter an alignment
error, and so the only error that can be encountered at runtime is a
SizeError
. This method permits extracting that SizeError
infallibly.
§Examples
use zerocopy::*;
#[derive(FromBytes, IntoBytes, KnownLayout, Immutable, Unaligned)]
#[repr(C)]
struct UdpHeader {
src_port: [u8; 2],
dst_port: [u8; 2],
length: [u8; 2],
checksum: [u8; 2],
}
#[derive(FromBytes, IntoBytes, KnownLayout, Immutable, Unaligned)]
#[repr(C, packed)]
struct UdpPacket {
header: UdpHeader,
body: [u8],
}
impl UdpPacket {
pub fn parse(bytes: &[u8]) -> Result<&UdpPacket, SizeError<&[u8], UdpPacket>> {
// Since `UdpPacket: Unaligned`, we can map the `CastError` to a `SizeError`.
UdpPacket::ref_from_bytes(bytes).map_err(Into::into)
}
}