Module zerocopy::error

source ·
Expand description

Types related to error reporting.

§Single failure mode errors

Generally speaking, zerocopy’s conversions may fail for one of up to three reasons:

Methods that only have one failure mode, like FromBytes::read_from_bytes, return that mode’s corresponding error type directly.

§Compound errors

Conversion methods that have either two or three possible failure modes return one of these error types:

  • CastError: the error type of reference conversions
  • TryCastError: the error type of fallible reference conversions
  • TryReadError: the error type of fallible read conversions

§Unaligned destination types

For Unaligned destination types, alignment errors are impossible. All compound error types support infallibly discarding the alignment error via From so long as Dst: Unaligned. For example, see <SizeError as From<ConvertError>>::from.

§Accessing the conversion source

All error types provide an into_src method that converts the error into the source value underlying the failed conversion.

§Display formatting

All error types provide a Display implementation that produces a human-readable error message. When debug_assertions are enabled, these error messages are verbose and may include potentially sensitive information, including:

  • the names of the involved types
  • the sizes of the involved types
  • the addresses of the involved types
  • the contents of the involved types

When debug_assertions are disabled (as is default for release builds), such potentially sensitive information is excluded.

In the future, we may support manually configuring this behavior. If you are interested in this feature, let us know on GitHub so we know to prioritize it.

§Validation order

Our conversion methods typically check alignment, then size, then bit validity. However, we do not guarantee that this is always the case, and this behavior may change between releases.

§Send, Sync, and 'static

Our error types are Send, Sync, and 'static when their Src parameter is Send, Sync, or 'static, respectively. This can cause issues when an error is sent or synchronized across threads; e.g.:

use zerocopy::*;

let result: SizeError<&[u8], u32> = std::thread::spawn(|| {
    let source = &mut [0u8, 1, 2][..];
    // Try (and fail) to read a `u32` from `source`.
    u32::read_from_bytes(source).unwrap_err()
}).join().unwrap();

To work around this, use map_src to convert the source parameter to an unproblematic type e.g.:

use zerocopy::*;

let result: SizeError<(), u32> = std::thread::spawn(|| {
    let source = &mut [0u8, 1, 2][..];
    // Try (and fail) to read a `u32` from `source`.
    u32::read_from_bytes(source).unwrap_err()
        // Erase the error source.
        .map_src(drop)
}).join().unwrap();

Structs§

  • The error emitted if the conversion source is improperly aligned.
  • The error type of a failed allocation.
  • The error emitted if the conversion source is of incorrect size.
  • The error emitted if the conversion source contains invalid data.

Enums§

Type Aliases§