Module error

Module error 

Source
Expand description

Error types for pcapsql-core.

This module provides structured error types for all pcapsql-core operations:

  • Error - Main error enum that wraps all error types
  • PcapError - Errors from PCAP file reading
  • ProtocolError - Errors from protocol parsing

All errors implement std::error::Error and can be converted to anyhow::Error.

Enums§

Error
Main error type for pcapsql-core operations.
PcapError
Errors related to PCAP file reading.
ProtocolError
Errors related to protocol parsing.

Type Aliases§

Result
Result type alias using our Error type.